资源描述:
《sqlserver中常用sql语句》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、SQLServer中常用语句有关数据库的一写操作:创建表项就不说了.CREATE TABLE Student (SnoCHAR(5)NOTNULLUNIQUE, SnameCHAR(20), SsexCHAR(1), SageINT, SdeptCHAR(15));插入记录:insertintoStudent(Sno,Sname,Ssex,Sdept)values('aaa','mary','f','172');删除记录:deletefromStudentwhereSno='aaa';注:只需要删除一个主键就可以了。其他的记录会相应的删除掉。
2、删除表中一个字段:ALTER TABLE StudentDROPcolumnSsex;列名;修改表中的那一行数据:原来的记录:Sno Sname Ssex Sdeptaaa mary f 172updateStudentsetSname='mary1',Ssex='m'whereSno='aaa';修改后:Sno Sname Ssex Sdeptaaa mary1 m 172desc倒叙排列:建立索引:createuniqueindexSnoonStudent(Sno);索引的一点好处:在查询时候比较方便,在存在的所有记录中查找一个Sno=1的时候!建
3、立索引的表中就直接查找Sno项比较它是否=1找到后查相关的记录就比较快。没有建立索引的需要把所有信息都查找一遍,再在其中找Sno字段,再比较其值=1的相关记录。默认是ASC。按表中哪个字段倒叙排序:select*fromStudentorderbySnodesc;注意:要排序的字段必须是int型。设置成自增长的字段在插入数据的时候不需要插入该字段的值:select*fromStudentorderbySnodesc;原来没有设置成自增长插入数据命令:insertintoStudent(Sno,Sname,Ssex,Sdept)values('aaa','mary','f'
4、,'172');将int型的Sno字段设置成自增长后insertintoStudent(Sname,Ssex,Sdept)values('mary1','f','172');insertintoStudent(Sname,Ssex,Sdept)values('mar1y','f','172');insertintoStudent(Sname,Ssex,Sdept)values('ma1ry','f','172');insertintoStudent(Sname,Ssex,Sdept)values('m1ary','f','172');在表中的排序如下:Sno Sname
5、 Ssex Sdept1 mary1 f 1722 mar1y f 1723 ma1ry f 1724 m1ary f 172/*********************************************************************************2006.7.20*********************************************************************************/查询表中记录总数:(无字段名字)selectcou
6、nt()fromusertable;或:(userid为字段名字,结果是字段的总行数)selectcount(*)useridfromStudent;查询字段的平均值:selecetavg(Sno)fromStudent;selectavg(字段名)from表名;给出查询的字段的平均值取别名:selectavg(字段名)as(别名)from(表名);查找指定的字段的其他字段selectSdept,Ssex,SnamefromStudentwhereSno=3;(whereSname='mary1';或则whereSnamelike'mary1';)在between语句查询
7、的都是在and之间的所有值而IN语句则必须是in括号里面的值.selectSno,Ssex,SnamefromStudent whereSdeptbetween180and190;selectSno,Ssex,Sname fromStudent whereSdept in(172,190);查询Student表中的所有的名字中的Sno和Ssex值.selectSno,SsexfromStudent whereSdept>=170andSnamelike'%%';注:%%之间是把所有的String类型的值like和where条