개수를 세는 함수
중복이 제거된 유저들의 도시 수
SELECT COUNT(DISTINCT CITY)
FROM `thelook_ecommerce.users`
레코드의 합계를 반환함
select sum(retail_price)
from `thelook_ecommerce.products`
레코드의 평균값을 반환함
select avg(retail_price)
from `thelook_ecommerce.products`
레코드의 최댓값을 반환함
select max(retail_price), max(cost)
from `thelook_ecommerce.products`
레코드의 최솟값을 반환함
select min(retail_price), min(cost)
from `thelook_ecommerce.products`
분산값을 반환함
select variance(retail_price)
from `thelook_ecommerce.products`
표준 편차를 반환함
select stddev(retail_price)
from `thelook_ecommerce.products`
성별로 유저 수를 확인해보자
SELECT GENDER,COUNT(ID) AS USER_COUNT
FROM `thelook_ecommerce.users`
GROUP BY gender
나라별로 유저수를 확인해보자
SELECT country,COUNT(ID) AS USER_COUNT
FROM `thelook_ecommerce.users`
GROUP BY country
<aside> 👉 country USER_COUNT Japan 2498 Brasil 14533 United States 22522 China 34184 South Korea 5301 Spain 3933 France 4644 United Kingdom 4585 Germany 4084 Colombia 11 Belgium 1308 Poland 249 Australia 2140 Austria 6 España 1 Deutschland 1
</aside>
국가별, 성별 유저수
select country,
gender,
count(id) as user_count
from `thelook_ecommerce.users`
group by country, gender