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
原创
2021-11-10 14:43:27 ·
2507 阅读 ·
0 评论