What is the difference between Seq Scan and Bitmap heap scan in postgres
optimization - What is the difference between Seq Scan and Bitmap heap scan in postgres? - Stack Overflow
where条件里用in的时候,有时候使用seq scan反而会导致異常慢,可以指定关掉
SET ENABLE_SEQSCAN to OFF; --关闭seq scan
postgresql 没有hint语句,只能开关。
where用=的时候就没问题。具体原因,原理有时间再分析。