码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 日期型 将timestamp类型转换为date类型

时间:2019-11-04 11:51:19      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:方法   ora   timestamp   rom   date   oracle   har   字符型   nbsp   

Oracle将timestamp类型转换为date类型有三种方法

1、使用to_char先转为字符型,在使用to_date再转为日期型

select to_date(to_char(systimestamp,‘yyyy/mm/dd hh24:mi:ss‘),‘yyyy/mm/dd hh24:mi:ss‘) from dual;

 

2、使用SYSTIMESTAMP+0隐式转换

select systimestamp+0 from dual;                    --oracle会自动进行隐式转换

3、使用cast函数进行转换

select cast(systimestamp as date) from dual;
 

Oracle 日期型 将timestamp类型转换为date类型

标签:方法   ora   timestamp   rom   date   oracle   har   字符型   nbsp   

原文地址:https://www.cnblogs.com/xibuhaohao/p/11791000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!