View Merging이 실패한 경우, 조인 조건을 뷰 내부로 밀어 넣는 방법 조인 조건을 상수화 하거나 LATERAL View를 사용한다. PostgreSQL 9.3 이상부터 지원. JPPD를 직접 구현할 수 있는 튜닝방법 Oracle의 경우 12c부터 Lateral View를 제공 explain (costs false, timing false, analyze) select a.*, b.* from customer a, LATERAL (select count(*) cnt, custid, salesdate from sales where sales.custid = a.custid group by custid, salesdate) b where a.custname = 'ksy90001'; ----------..