PostgreSQL
- 1 ответ
- 0 вопросов
1
Вклад в тег
postgres=# explain (costs off) select * from t where a = 1;
QUERY PLAN
-------------------------------
Index Scan using t_a_idx on t
Index Cond: (a = 1)
(2 rows)
где строчка " Index Scan using t_a_idx on t" означает использование индекса.