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开始起步
原文地址:https://www.cnblogs.com/ashidamana/p/5039261.html