程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> SQL Server設置主鍵自增長列(使用sql語句實現)

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

編輯:更多數據庫知識

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)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved