欢迎投稿

今日深度:

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

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要算出两日期间隔了多少秒,要用函数转换一下。

www.htsjk.Com true http://www.htsjk.com/oracle/23807.html NewsArticle oracle日期时间型timestamp的深入理解 我们都知道date和timestamp都是对日期和时间的表示,只是两种类型的精确度不同,前者精确到秒,后者精确到小数秒,可以是 0 to 9,缺省是6。 下面对...
相关文章
    暂无相关文章
评论暂时关闭