其中包含一天记录的多条记录
我想选择与day相对应的所有行
我该怎么做?
假设你实际上是指时间戳,因为Postgres中没有日期时间将timestamp列转换为日期,这将删除时间部分:
select *from the_tablewhere the_timestamp_column::date = date '2015-07-15';
这将从7月15日返回所有行。
请注意,上面的内容不会使用the_timestamp_column上的索引。如果性能至关重要,则需要在该表达式上创建索引或使用范围条件:
select *from the_tablewhere the_timestamp_column >= timestamp '2015-07-15 00:00:00' and the_timestamp_column < timestamp '2015-07-16 00:00:00';总结
以上是内存溢出为你收集整理的postgresql – Postgres where子句比较时间戳全部内容,希望文章能够帮你解决postgresql – Postgres where子句比较时间戳所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)