标签: 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分钟以上。有什么问题?