从PostgreSQL中的时间戳中提取日期的最有效方法是什么?

时间:2014-07-22 15:36:48

标签: sql database performance postgresql

查询表格

select * from foo
where created_on::date = '2014/1/1'

select * from foo
where date_trunc('day', created_on) = '2014/1/1'

select * from foo
where date(created_on) = '2014/1/1'

在什么条件下,不同的查询会表现得更好/更差?哪三个选项中效率最高?

1 个答案:

答案 0 :(得分:2)

总结评论,您的第一个和第三个解决方案是相同的。根据@Nick Barnes,转换为日期只需使用date函数。

这些选项加上选项2,需要对表的每一行运行一个函数,所以即使你有一个索引,也不能使用它。

假设created_on上有索引,这是您最好的选择:

select * from foo
where created_on >= '2014/1/1 00:00:00'
  and created_on < '2014/1/2 00:00:00';