sql to_date && to_timestamp

1.二者区别:

        to_data 转换为 普通的时间格式

        to_timestamp 转换可为 时间戳格式

 

2.使用误区:

比较同一天 日期大小的时候

    select current_timestamp <= to_date('2018-03-12 18:47:35','yyyy-MM-dd hh24:mi:ss') from pub_employee

执行该sql不一定获取全部结果

原因:

select to_date('2018-03-12 18:47:35','yyyy-MM-dd hh24:mi:ss') from pub_employee

的结果并不是时间戳,而是2018-03-12

正确的写法

select current_timestamp <= to_timestamp('2018-03-12 18:47:35','yyyy-MM-dd hh24:mi:ss') from pub_employee

 

3.to_date:


方式一:正确
select to_date('2018-03-08','yyyy-MM-dd') from pub_employee
方式二:
select to_date('2018-03-08 18:55:33','yyyy-MM-dd') from pub_employee
方式三:
select to_date('2018-03-08 18:55:33','yyyy-MM-dd hh24:mi:ss') from pub_employee

返回的均为2018-03-08

 

4.to_timestamp:


方式一:
select to_timestamp('2018-03-08','yyyy-MM-dd') from pub_employee
方式二:
select to_timestamp('2018-03-08 18:55:33','yyyy-MM-dd') from pub_employee
方式一和二都是以下格式,虽然都是时间戳,但是后面一截是2018-03-08 00:00:00

方式三:正确
select to_timestamp('2018-03-08 18:55:33','yyyy-MM-dd hh24:mi:ss') from pub_employee
 


转自:https://blog.csdn.net/sky_limitless/article/details/79527665 

你可能感兴趣的:(数据库,gp,to_date,to_timestamp)