题解 | #某宝店铺的SPU数量#
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select style_id,count(distinct item_id) num
from product_tb
group by style_id
order by num desc
from product_tb
group by style_id
order by num desc