Table우선 식당(restaurants)과 게시글(articles) 테이블을 가지고 여러 가지 테스트를 해볼 것이다. 식당 테이블에는 약 34만개, 게시글에는 1000개의 데이터가 존재한다. PK인 id만을 가지고 테스트를 해볼 것이기 때문에 스키마는 생략한다. 단, 추가로 articles의 restaurant_id를 가지는 인덱스 restaurant_idx를 생성했다.NL Join & Index Scanselect * from restaurants r , articles a where r.id Nested Loop (cost=0.70..71.30 rows=1 width=855) (actual time=0.047..0.049 rows=0 loops=1) -> Index Scan using r..