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常用语句的主要内容,如果未能解决你的问题,请参考以下文章

面试常用的代码片段

Mybatis动态sql技术

sql语句中嵌套时候用in 和=有啥区别

sql语句 嵌套查询 排序

MYBATIS05_ifwherechoosewhentrimsetforEach标签sql片段

[AndroidStudio]_[初级]_[配置自动完成的代码片段]