postgreSQL中查找日期

前端之家收集整理的这篇文章主要介绍了postgreSQL中查找日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

要查找项目里某个日期的里对应的记录,发现有下面的sql语句:

select * from t_appointment where to_char(appointment_time,'yyyy-mm-dd') like '2013-04-19%'

或者select * from t_appointment where appointment_time>='2013-04-19 00:00:00.0' and appointment_time<='2013-04-19 23:59:59.9'

原文链接:https://www.f2er.com/postgresql/196255.html

猜你在找的Postgre SQL相关文章