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 周中的星期几
原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/236648.html