一些有用的SQL語句

2021-04-27 10:33:15 字數 630 閱讀 8176

說明:複製表(只複製結構,源表名: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 一些有用的語句

得到當前時間格式為 yyyymmdd select convert varchar 10 getdate 112 獲取兩位年,兩位月。declare yymm varchar 8 if month getdate 10 set yymm right year getdate 2 0 convert ...

一些有用的SQL語句

1 匯入資料 imp80 system manager orcl file d temp dbfile1.dmp full n fromuser yh1 touser yh2 5 刪除資料表中的重覆記錄 刪除交通違章資料表中的重覆記錄 同一時間 haptime 車號牌 numberplate 處罰原...

SQL的一些有用指令

將 test 的日誌截斷,並把物理檔案縮小到 1mbuse test backup log test with truncate only godbcc shrink file erp log,1,truncateonly go 檢視當前的資料庫的系統檔案是什麼 use test select fr...