SQL Server設定主鍵自增長列(使用sql語句實現)

來源:互聯網
上載者:User

1.建立一資料表,裡面有欄位id,將id設為為主鍵 複製代碼 代碼如下:create table tb(id int,constraint pkid primary key (id))
create table tb(id int primary key )

2.建立一資料表,裡面有欄位id,將id設為主鍵且自動編號 複製代碼 代碼如下:create table tb(id int identity(1,1),constraint pkid primary key (id))
create table tb(id int identity(1,1) primary key )

3.已經建好一資料表,裡面有欄位id,將id設為主鍵 複製代碼 代碼如下:alter table tb alter column id int not null
alter table tb add constraint pkid primary key (id)

4.刪除主鍵 複製代碼 代碼如下:Declare @Pk varChar(100);
Select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID('tb') and xtype='PK';
if @Pk is not null
exec('Alter table tb Drop '+ @Pk)

相關文章

聯繫我們

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