sql中as的用法和一些經典的sql語句

廈門德仔發表於2010-09-26

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 '看複合查詢機制

  10、select table1.id from table1,table2,(select id from table3) as t3 where table1.id=table2.i

相關文章