sql server创建复合主键的2种方法

创建复合主键:

方法一:创建表之后,alter table table_name add primary key(字段1,字段2)   

方法二:create table 表名 (字段名1 int not null, 

                       字段名2 nvarchar(13) not null 

                       字段名3………… 

                       字段名n…………) 

    go 

    alter table 表名 with nocheck add  

    constraint [pk_表名] primary key nonclustered  

     ( 

          [字段名1], 

          [字段名2] 

     ) 

    go 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐