我有一个包含时区类型列的表。此列已编入索引。
此查询使用索引:
select t.*
from <table> t
where t.load_date = to_timestamp('1 may 2013', 'dd mon yyyy')
order by t.load_date;
这个(加上时区转换)没有,并且暗示它强制使用索引也不起作用:
select t.*
from <table> t
where t.load_date = to_timestamp('1 may 2013', 'dd mon yyyy') at time zone 'US/Pacific'
order by t.load_date;
有人可以解释为什么后一个查询需要 FTS 吗?
谢谢。