新建一张数据表,将userid设为主键并自动增长 create table t_userlogin(userid int not null primary key identity(1,1),username nvarchar(50) not null,pass varchar(50) not null ) 修改已经建好的一张数据表,将userid设为主键并自动生长 alter table t
新建一张数据表,将userid设为主键并自动增长
create table t_userlogin(userid int not null primary key identity(1,1),username nvarchar(50) not null,pass varchar(50) not null )
修改已经建好的一张数据表,,将userid设为主键并自动生长
alter table tb alter column id int not null
alter table tb add constraint pkid primary key (id)
删除主键
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)
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!