SQL常用语句
Posted One Sm@il
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL常用语句相关的知识,希望对你有一定的参考价值。
--查询表主键 EXEC sp_pkeys @table_name=‘Plat_CommAttrSelect‘ --删除表主键 Declare @Pk varChar(100); Select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID(‘Plat_CommAttrSelect‘) and xtype=‘PK‘; if @Pk is not null exec(‘Alter table Plat_CommAttrSelect Drop ‘+ @Pk) --添加表主键 alter table Plat_CommAttrSelect add constraint Plat_CommAttrSelect_PK primary key(ID)
以上是关于SQL常用语句的主要内容,如果未能解决你的问题,请参考以下文章