Oracle中查询当前时间、时间格式化方法

允我心安 提交于 2020-03-28 18:13:40

Oracle中如何获取系统当前时间


 原文链接:https://blog.csdn.net/qq_26483671/article/details/79762338


select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; 
 
ORACLE里获取一个时间的年、季、月、周、日的函数 
select  to_char(sysdate, 'yyyy' )  from dual; --年 
 
select  to_char(sysdate, 'MM' )  from dual; --月 
select  to_char(sysdate, 'dd' )  from dual; --日 
select  to_char(sysdate, 'Q')  from dual; --季 
select  to_char(sysdate, 'iw')  from dual; --周

 

//时间格式化方法

to_date('2009-12-25 14:23:31(时间)','yyyy-mm-dd,hh:mi:ss'(格式))


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!