oracle日期时间型timestamp的深入理解

1、字符型转成timestamp

select to_timestamp('01-10月-08 07.46.41.000000000 上午','dd-MON-yy hh:mi:ss.ff AM') from dual;  

2、timestamp转成date型

select cast(to_timestamp('01-10月-08 07.46.41.000000000 上午','dd-MON-yy hh:mi:ss.ff AM') as date) timestamp_to_date from dual; 

3、date型转成timestamp

select cast(sysdate as timestamp) date_to_timestamp from dual;  

4、获取timestamp格式的系统时间

select systimestamp from dual;  
    原文作者:mysql
    原文地址: https://blog.csdn.net/shenhaiwen/article/details/78836363
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞