1. 程式人生 > >Sql server中的時間相關

Sql server中的時間相關

無聊中...

寫個select year(getdate())

select month(getdate())

select day(getdate())

......

時分秒自然不同了,

select datepart(hour,getdate())

select datepart(minute,getdate())

select datepart(ms,getdate())

具體的使用,下面是sql server中的說明:

日期部分縮寫
yearyy, yyyy
quarterqq, q
monthmm, m
dayofyeardy, y
daydd, d
weekwk, ww
weekdaydw
Hourhh
minutemi, n
secondss, s
millisecondms

不過我很納悶,為什麼getdate()取的時間跟我係統顯示時間不同?總有幾分鐘的差距.