您的位置:首页 > 数据库

SQL查询语句

2015-12-11 15:41 183 查看
查询所有列

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开始起步
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: