sqlserver 時間格式函數詳細

來源:互聯網
上載者:User

一、時間函數

 在使用預存程序,sql函數的時候,會遇到一些對時間的處理。比如時間的擷取與加減。這裡就用到了sql內建的時間函數。下面我列出這些函數,方便日後記憶,使用。

--getdate 擷取目前時間 select getdate()  --dateadd 原有時間加: 2013-02-17 13:20:16 此時間加12個月  select dateadd(MONTH,12,'2013-02-17 13:20:16')  --返回:2014-02-17 13:20:16.000  (參數month可以改為 day,year等日期加相應的值)  --datediff 兩個時間的差 (後面-前面=傳回值) select datediff(day,'2013-02-01','2013-02-18')   --返回:17  (參數day可以改為 month,year等日期加相應的值)  --datepart 擷取日期的某個部分整數 select DATEPART(month, '2013-2-17')  --返回 2    (參數month可以改為 day,year等日期加相應的值)  --datename 擷取指定部位的字串 select datename(weekday, '2013-2-17')  --返回 星期日 (參數weekday可以改為 day,year等日期加相應的值) --day(), month(),year() 擷取指定部位的字串 select day('2013-2-15') --返回15

二、時間格式轉換

 

    select CONVERT(varchar, getdate(), 120 )  --返回 2013-02-17 13:37:54    select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','') --返回 20130217133828    select CONVERT(varchar(12) , getdate(), 111 )  --返回 2013/02/17    select CONVERT(varchar(12) , getdate(), 112 )  --返回 20130217    select CONVERT(varchar(12) , getdate(), 102 )  --返回 2013.02.17    select CONVERT(varchar(12) , getdate(), 101 )  --返回 02/17/2013    select CONVERT(varchar(12) , getdate(), 103 )  --返回 17/02/2013    select CONVERT(varchar(12) , getdate(), 104 )  --返回 17.02.2013    select CONVERT(varchar(12) , getdate(), 105 )  --返回 17-02-2013    select CONVERT(varchar(12) , getdate(), 106 )  --返回 17 02 2013    select CONVERT(varchar(12) , getdate(), 107 )  --返回 02 17, 2013    select CONVERT(varchar(12) , getdate(), 108 )  --返回 13:42:50    select CONVERT(varchar(12) , getdate(), 109 )  --返回 02 17 2013      select CONVERT(varchar(12) , getdate(), 110 )  --返回 02-17-2013    select CONVERT(varchar(12) , getdate(), 113 )  --返回 17 02 2013 1    select CONVERT(varchar(12) , getdate(), 114 )  --返回 13:42:24:743

 

三、時間格式相關表格

 

函數 參數/功能
GetDate( ) 返回系統目前的日期與時間
DateDiff (interval,date1,date2) 以interval 指定的方式,返回date2 與date1兩個日期之間的差值 date2-date1
DateAdd (interval,number,date) 以interval指定的方式,加上number之後的日期
DatePart (interval,date) 返回日期date中,interval指定部分所對應的整數值
DateName (interval,date) 返回日期date中,interval指定部分所對應的字串名稱

 

縮 寫(Sql Server) Access 和 ASP 說明
Year Yy yyyy 年 1753 ~ 9999
Quarter Qq 季 1 ~ 4
Month Mm 月1 ~ 12
Day of year Dy y 一年的日數,一年中的第幾日 1-366
Day Dd 日,1-31
Weekday Dw w 一周的日數,一周中的第幾日 1-7
Week Wk ww 周,一年中的第幾周 0 ~ 51
Hour Hh 時0 ~ 23
Minute Mi 分鐘0 ~ 59
Second Ss s 秒 0 ~ 59
Millisecond Ms - 毫秒 0 ~ 999
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.