oracle日期时间型timestamp的深入理解
我们都知道date和timestamp都是对日期和时间的表示,只是两种类型的精确度不同,前者精确到秒,后者精确到小数秒,可以是 0 to 9,缺省是6。下面对timestamp函数进行了详细的分析介绍。
1、字符型转成timestamp
select to_timestamp('01-10月-15 07.46.41.000000000 上午','dd-MON-yy hh:mi:ss.ff AM') from dual;

2、timestamp转成date型
select cast(to_timestamp('01-10月-15 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;

5、两date的日期相减得出的是天数,而两timestamp的日期相减得出的是完整的年月日时分秒小数秒
select systimestamp-systimestamp from dual;
select sysdate-sysdate from dual;
注:timestamp要算出两日期间隔了多少秒,要用函数转换一下。
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。