查询表格
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'
在什么条件下,不同的查询会表现得更好/更差?哪三个选项中效率最高?
答案 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';