您当前的位置: 首页 >  sql

暂无认证

  • 0浏览

    0关注

    100082博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

sql中as的用法和一些经典的sql语句

发布时间:2010-09-26 15:23:00 ,浏览量:0

sql中as的用法和一些经典的sql语句

  总结一些工作中用到或碰到的SQL语句,希望能与大家分享,同时也希望大家能提供更多的精妙SQL语句.....   1、delete table1 from (select * from table2) as t2 where table1.id=t2.id   2、truncate table table1 (不在事务日志中做记录,比delete table快,但不能激活触发器)   3、update table1 set column=column+1 where id=(select id from table2)   4、update table1 set column=column+1 from table1,table2 where table1.id=table2.id   5、select top n [Percent] * from table1 '输出百分比记录   6、select id,column1 * column2 as column from table1 '可算明白as的用法了   7、select * from table1 where column1 like 'SQL#_G_O' escape '#' '单匹配   8、select table1.id from table1 where not exists (select table2.id from table2 where table1.id=table2.id) '这个应该比not in快一些   9、select table1.id from table1,table2 where table1.id<>table2.id '看复合查询机制

关注
打赏
1655516835
查看更多评论
立即登录/注册

微信扫码登录

0.0783s