집계 함수(aggregate function)는 여러 행으로부터 하나의 결과값을 반환하는 함수입니다.
count 함수는 해당 항목 레코드의 개수를 반환하는 함수입니다.
select count(id)
from `thelook_ecommerce.users`;
아래와 같이 중복을 제거해서 카운팅하기도 합니다.
select count(distinct city)
from `thelook_ecommerce.users`;
<aside> 💡 COUNT(별표)와 COUNT(컬럼명) 차이 COUNT(별표) : NULL값 포함 O COUNT(컬럼명) : NULL값 포함 X
</aside>