PGSQL to_date转换年月日时分秒发现格式不对

场景:oracle 用to_date函数,可以正确转换成年月日时分秒的格式

select to_date('2021-09-15 15:18:13','yyyy-mm-dd hh24:mi:ss') from table
  • 查询到的结果 2021/09/16 星期四 15:18:13

如果是PG的话,

  • 查询到的结果 2021-09-16

可能会影响系统根据时间维度统计的数据结果。
PG应该处理如下

select to_timestamp('2021-09-15 15:18:13','yyyy-mm-dd hh24:mi:ss') from table

如果需要比较时间,直接转时间戳进行比较就好了。
另:获取当前时间戳 current_timestamp

你可能感兴趣的:(sql,postgresql,oracle,数据库)