天天看點

精妙SQL語句介紹

說明:複制表(隻複制結構,源表名:a 新表名:b)

  SQL: select * into b from a where 1<>1   

  說明:拷貝表(拷貝資料,源表名:a 目标表名:b)

  SQL: insert into b(a, b, c) select d,e,f from b;   

  說明:顯示文章、送出人和最後回複時間

  SQL: select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title) b  

  說明:外連接配接查詢(表名1:a 表名2:b)

  SQL: select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c   

  說明:日程安排提前五分鐘提醒

  SQL: select * from 日程安排 where datediff('minute',f開始時間,getdate())>5   

  說明:兩張關聯表,删除主表中已經在副表中沒有的資訊

  SQL:

  delete from info where not exists ( select * from infobz where info.infid=infobz.infid )   

  說明:--

  select * from studentinfo where not exists(select * from student where studentinfo.id=student.id) and 系名稱='"&strdepartmentname&"' and 專業名稱='"&strprofessionname&"' order by 性别,生源地,聯考總成績

本文轉自loveme2351CTO部落格,原文連結: http://blog.51cto.com/loveme23/7940,如需轉載請自行聯系原作者