postgresql中的日期比较不起作用

时间:2013-02-28 16:56:13

标签: postgresql

我的postresql数据库中的查询有问题。我试图在特定日期时间之后获取最后100个日志,但是当我使用此查询时:

select * from log_entry WHERE array['MESSAGE'] && tags AND CAST(last_updated AS DATE) >= '2013-02-28T16:47:26.394213' ORDER BY last_updated DESC LIMIT 100

此处last_updated列的类型为:timestamp without time zone

有时我会在“2013-02-28T16:47:26.394213”之前收到日志,我做错了什么?有没有更好的方法来做这个而不是使用演员?

提前致谢!

2 个答案:

答案 0 :(得分:4)

(根据请求从评论中转发。)

嗯,这是你的问题:当你将时间戳(有或没有时区)转换为日期时,你会截断时间戳的时间部分。为什么不将'2013-02-28T16:47:26.394213'投射到时间戳并直接与last_updated进行比较?

select * from log_entry 
WHERE array['MESSAGE'] && tags 
AND last_updated 
  >= '2013-02-28T16:47:26.394213'::timestamp without time zone
ORDER BY last_updated DESC LIMIT 100

答案 1 :(得分:0)

使用它。这应该有用。

从log_entry中选择* 数组[' MESSAGE']&&标签 和年龄(last_updated)

  

=年龄(现在())   ORDER BY last_updated DESC LIMIT 100