1. 总结
mysql | oracle | |
---|---|---|
当前时间 | now() | sysdate、current_date |
年月日 | current_date() | to_char(sysdate,‘YYYY-MM-DD’) |
时分秒 | current_time() | to_char(sysdate,‘hh24:mi:ss’) |
年 | year(now()) | extract(year from sysdate) |
月 | month(now()) | extract(month from sysdate) |
日 | day(now()) | extract(day from sysdate) |
格式化 | date_format(time,format) | to_char(time,format)、to_date(time,format) |
年 %Y 月 %m 日 %d 时 %H 分 %i 秒 %s | 年 yyyy 月 mm 日 dd 24时制 hh24 分 mi 秒 ss |
2. 案例(每个案例都是先放mysql结果,然后是oracle结果)
1. 当前时间
2. 年月日
3. 时分秒
4. 单取 年月日
5. 时间格式
3. 其他时间操作(参考)
oracle: https://www.cnblogs.com/wsy0202/p/11822039.html
mysql: https://www.cnblogs.com/northern-light/p/8605832.html