在postgresql中两个日期之间需要更多时间

时间:2018-05-24 10:21:59

标签: sql postgresql postgresql-9.5

在postgresql中运行以下查询

SELECT * 
FROM transactions.transactions_view 
where gl_account_id=246

只需150毫秒

但是

SELECT * 
FROM transactions.transactions_view 
WHERE gl_account_id=246 AND tran_date between '2018-05-01' AND '2018-05-24'

需要9分钟以上。有什么问题?

0 个答案:

没有答案