Sql Server 增加欄位、修改欄位、修改類型、修改預設值

來源:互聯網
上載者:User

標籤:serve   obj   約束   表名   object_id   table   rom   default   objects   

轉:http://www.cnblogs.com/pangpanghuan/p/6432331.html

Sql Server 增加欄位、修改欄位、修改類型、修改預設值

1、修改欄位名:

  alter table 表名 rename column A to B

2、修改欄位類型:

  alter table 表名 alter column 欄位名 type not null

3、修改欄位預設值
  alter table 表名 add default (0) for 欄位名 with values

  如果欄位有預設值,則需要先刪除欄位的約束,在添加新的預設值,

  select c.name from sysconstraints a 
  inner join syscolumns b on a.colid=b.colid 
  inner join sysobjects c on a.constid=c.id
  where a.id=object_id(‘表名‘) 
  and b.name=‘欄位名‘

  根據約束名稱刪除約束

  alter table 表名 drop constraint 約束名

  根據表名向欄位中增加新的預設值

  alter table 表名 add default (0) for 欄位名 with values

4、增加欄位:

  alter table 表名 add 欄位名 type not null default 0

5、刪除欄位:

  alter table 表名 drop column 欄位名;

Sql Server 增加欄位、修改欄位、修改類型、修改預設值(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.