Select문 실행 순서
select columns
from table_name
where conditions
group by grouping column
having grouping conditions
order by col ASC || DESC
// 실행 순서 : from - where - group by - having - select - order by
// where 절 후에 group by를 하므로 grouping 된 것들 중 having에서 조건을 준다