Sql Server Alter語句

來源:互聯網
上載者:User

標籤:des   style   io   color   ar   sp   for   div   on   

在修改Sql Server表結構時,常用到Alter語句,把一些常用的alter語句列舉如下。

1:向表中添加欄位

Alter table [表名] add [列名] 類型

2:  刪除欄位

Alter table [表名]  drop column [列名]

3:  修改表中欄位類型 (可以修改列的類型,是否為空白)

Alter table [表名] alter column [列名] 類型

4:添加主鍵

Alter table [表名] add constraint [ 約束名] primary key( [列名])

5:添加唯一約束

Alter table [表名] add constraint [ 約束名] unique([列名])

6:添加表中某列的預設值

Alter table [表名] add constraint [約束名] default(預設值) for [列名]
7:添加約束

Alter table [表名] add constraint [約束名] check (內容)

8:添加外鍵約束

 Alter table [表名] add constraint [約束名]  foreign key(列名) referencese 另一表名(列名)

9:刪除約束

Alter table [表名] drop constraint [約束名] 

10:重新命名表

exec sp_rename ‘[原表名]‘,‘[新表名]‘

11:重新命名列名

exec sp_rename ‘[表名].[列名]‘,‘[表名].[新列名]‘

 

建立注釋(N‘user‘, N‘dbo‘, N‘TABLE‘ 為固定的寫法)

12:為表添加描述資訊
EXECUTE sp_addextendedproperty N‘MS_Description‘, ‘人員資訊表‘, N‘user‘, N‘dbo‘, N‘TABLE‘, N‘表名‘, NULL, NULL

13:為欄位Username添加描述資訊
EXECUTE sp_addextendedproperty N‘MS_Description‘, ‘姓名‘, N‘user‘, N‘dbo‘, N‘TABLE‘, N‘表名‘, N‘column‘, N‘Username‘

14:為欄位Sex添加描述資訊
EXECUTE sp_addextendedproperty N‘MS_Description‘, ‘性別‘, N‘user‘, N‘dbo‘, N‘TABLE‘, N‘表名‘, N‘column‘, N‘Sex‘

15:更新表中列UserName的描述屬性:
EXEC sp_updateextendedproperty ‘MS_Description‘,‘新的姓名‘,‘user‘,dbo,‘TABLE‘,‘表名‘,‘column‘,‘UserName‘

16:刪除表中列UserName的描述屬性:
EXEC sp_dropextendedproperty ‘MS_Description‘,‘user‘,dbo,‘TABLE‘,‘表名‘,‘column‘,‘Username‘

Sql Server Alter語句

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.