postgresql关于时间的处理

在PostgreSQL的脚本编写中,发现时间处理方式需要特别注意
select * from cdc."clientId"
--where "EndTime" > date '2017-10-12' --取得日期在 2017-10-12 以后的记录
--where "CreateTime" > timestamp '2017-10-10 21:26:44.008040' --取得日期在2017-10-10 21:26:44.008040以后的记录
--where "EndTime" > now() --取得日期在今天以后的记录

你可能感兴趣的:(postgresql关于时间的处理)