react 前端框架如何驱动企业数字化转型与创新发展
364
2024-01-05
这篇文章主要为大家展示了“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查询语句怎么写”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~