예를 들면
select sum(point) from T1 group by user_id having sum(point)>10 과
select point from (
select sum(point) as point from T1 group by user_id
) where point >10
위 두개의 쿼리문은 같은 결과가 타올거 같은데 어떤게 더 효율적인지 부탁 드립니다.
수행시간이나 IO, cost를 비교해보세요