共计 684 个字符,预计需要花费 2 分钟才能阅读完成。
这篇文章主要为大家展示了“SQL 查询语句怎么写”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让丸趣 TV 小编带领大家一起研究并学习一下“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 查询语句怎么写”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注丸趣 TV 行业资讯频道!