精妙SQL語句 sql join語句

2021-05-07 22:23:46 字數 1046 閱讀 6833

文章出處:

精妙sql語句 sql join語句

說明:複製表(只複製結構,源表名: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 ) 

說明:四表聯查問題: 

sql: select * from a left inner join b on a.a=b.b right inner join c on a.a=c.c inner join d on a.a=d.d where ..... 

查詢10條內的後5條。

select   top   5   *   from   (select   top   10   *   from   table1   order   by   id  asc)   order   by   id   desc

精妙SQL語句

精妙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....

精妙Sql語句

1 判斷a 表中有而 b表中沒有的記錄 select a.from tbl1 a left join tbl2 b on a.key b.key where b.key is null 雖然使用 in也可以實現,但是這種方法的效率更高一些 2 新建乙個與某個表相同結構的表 select into b...

精妙SQL語句

1 說明 複製表 只複製結構,源表名 a,新錶名 b sql select into b from a where 1 1 2.說明 拷貝表 拷貝資料,源表名 a,目標表名 b sql insert into b a,b,c select d,e,f from b 3 select a.title,...