含糊冬日

文章
3
资源
0
加入时间
2年10月21天

Oracle中SQL语句获取时间日期的函数

Oracle在SQL语句中获取系统当前时间并格式化处理获取系统当前时间date类型的时间格式select sysdate from dual; char类型的时间格式select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; Oracle里获取时间的年、月、日、季、周的函数 select to_char(sysdate, 'yyyy' ) from dual; --年 select to_char(sysdate