EXPLAIN ANALYZE 명령어가 실제 쿼리 실행후 분석이라고 알고있는데요.
EXPLAIN ANALYZE 명령어 썼을때랑 안썼을때랑 시간차이가 너무 납니다..
(18초)
EXPLAIN ANALYZE
select * from table
where timestamp >= '2022-01-17' and timestamp <= '2022-01-18'
(250초 이상)
select * from table
where timestamp >= '2022-01-17' and timestamp <= '2022-01-18'
TablePlus, pgadmin 두개를 썼는데 둘다 EXPLAIN ANALYZE 명령어를쓰면 시간이 훨씬 더 짧습니다..
제가 잘못알고있는게 있을까요?
|