得到當前時間格式為('yyyymmdd')
select convert(varchar(10),getdate(),112)
/*獲取兩位年,兩位月。。。*/
declare @yymm varchar(8)
if(month(getdate())<10)
set @yymm=right(year(getdate()),2)+'0'+convert(varchar,month(getdate()),112)
else
set @yymm=right(year(getdate()),2)+convert(varchar,month(getdate()),112)
select @yymm
/*獲取三位隨機數(string),不夠前面補0*/
declare @t int
declare @y varchar(3)
set @t = rand()*1000
set @y=right('000',3-len(@t))+convert(varchar,@t)
select @y
一些有用的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語句
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...