select * from orders
where course_title = '앱개발 종합반'
course_title
이 어느 테이블에 속하는지 헷갈릴 수 있다.select * from orders o
where o.course_title = '앱개발 종합반'
o
o
라는 별칭을 사용했으나, a, b 등... 어느것을 사용해도 무방하다.o
는 orders 를 앞으로 이렇게 나타내겠다는 의미o.course_title
select payment_method, count(*) from order o
where o.course_title = '앱개발 종합반'
group by payment_method
count(*)
라는 필드명은 직관적으로 보기는 어렵다.select payment_method, count(*) as cnt from order o
where o.course_title = '앱개발 종합반'
group by payment_method
as
로 별칭을 단다
count(*)
-> cnt
로 바뀌었다.