这篇文章主要为大家展示了“SQL查询语句怎么写”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“SQL查询语句怎么写”这篇文章吧。
-
查询所有列
-
Select * from Tblclass
-
查询指定列
-
Select cid,cname from tblclass
-
查询指定列只显示不同的项
-
Select distinct pwd trom Tblclass
-
查询指定行
-
Select * from tblclass where cid = 4
-
查询数据内容为空/非空的语句
-
Select * from tblclass where pwd is not null
-
Select * from tblclass where pwd is null
-
查询列中的指定数据
-
Select * from tblclass where pwd in('123456')
-
cid int identity(1,2) primary key notnull
-
注: identity(1,2)
-
第一个参数为起始值为1
-
第二个参数为步数2
-
注:primary key
-
设置为主键,不接受相同参数,强行插入此值时需要用
-
Set identity_insert Tblclass on 打开语句后才能写插入语句
-
Set identity_insert Tblclass off 关闭语句
-
修改identity参数
-
Dbcc checkident('tblclass',reseed,200)
-
注:再增加数据时会从200开始起步
以上是“SQL查询语句怎么写”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/205123.html