본문 바로가기

algorithm

[programmers] MySQL - Lv.2 카테고리 별 상품 개수 구하기 (String, Data)

문제

 

 

 

 

 

풀이

 

SELECT substring(product_code, 1, 2) category,
       count(*) products
from product
group by category
order by category;