1.獲取系統當前時間
SQL Server 2005:
select getdate()
Oracle:
select sysdate from dual
2.獲取年月日
SQL Server 2005:
復制代碼 代碼如下:
select year(getdate()) --2011
select month(getdate()) --3
select day(getdate()) --23
Oracle:
復制代碼 代碼如下:
select to_char(sysdate,'yyyy') from dual --2011
select to_char(sysdate,'mm') from dual --03
select to_char(sysdate,'dd') from dual --23
q 季度
hh 小時(12)
hh24 小時(24)
mi 分
ss 秒
D 周中的星期幾