精妙SQL語句介紹 持續更新

2021-04-01 03:01:36 字數 1622 閱讀 7236

說明:複製表(只複製結構,源表名: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 a.num, a.name, b.upd_

date, b.prev_

upd_

date from table1,(select x.num, x.upd_

date, y.upd_

date prev_

upd_

date from (select num, upd_

date, inbound_

qty, stock_

onhand from table2 where to_

char(upd_

date,'yyyy/mm') = to_

char(sysdate, 'yyyy/mm')) x, (select num, upd_

date, stock_

onhand from table2 where to_

char(upd_

date,'yyyy/mm') = to_

char(to_

date(to_

char(sysdate, 'yyyy/mm') ¦¦ '/01','yyyy/mm/dd') - 1, 'yyyy/mm') ) y, where x.num = y.num (+)and x.inbound_

qty + nvl(y.stock_

onhand,0) <> x.stock_

onhand ) b where a.num = b.num   

說明:--

sql:

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

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

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

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