oracle日期时间型timestamp相关学习

1、字符型转成timestamp

 

[c-sharp]view plaincopyprint?
  1. select to_timestamp('01-10月-08 07.46.41.000000000 上午','dd-MON-yy hh:mi:ss.ff AM')  
  2.   from dual;  

2、timestamp转成date型

 

[c-sharp]view plaincopyprint?
  1. select cast(to_timestamp('01-10月-08 07.46.41.000000000 上午','dd-MON-yy hh:mi:ss.ff AM'as date) timestamp_to_date  
  2.   from dual;  

3、date型转成timestamp

 

[c-sharp]view plaincopyprint?
  1. select cast(sysdate as timestamp) date_to_timestamp  
  2.   from dual;  

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

 

[c-sharp]view plaincopyprint?
  1. select systimestamp from dual;  

5、两date的日期相减得出的是天数,而两timestamp的日期相减得出的是完整的年月日时分秒小数秒

 

[c-sharp]view plaincopyprint?
  1. select systimestamp-systimestamp from dual;  
  2. select sysdate-sysdate from dual;  

注:所以,timestamp要算出两日期间隔了多少秒,要用函数转换一下。

6、to_char函数支持date和timestamp,但是trunc却不支持TIMESTAMP数据类型。

7、timestamp只支持秒的小数点后面六位。

 

[c-sharp]view plaincopyprint?
  1. select to_char(systimestamp, 'yyyymmdd hh24:mi:ssxff6') FROM dual;  

注:ssxff6也可以为ssxff7ssxff8ssxff9等,但只到6有效。

8、获取系统时间的语句:

 

[c-sharp] view plain copy print ?
  1. SELECT sysdate,systimestamp,to_char(systimestamp, 'yyyymmdd hh24:mi:ssxff6') FROM dual;  

oracle timestamp 比较大小

TYPE_TIMESTAMP >

to_timestamp('2012-07-28 00:00:0.000000000',

'yyyy-mm-dd hh24:mi:ss.ff9')


你可能感兴趣的:(oracle日期时间型timestamp相关学习)