题解 | #某宝店铺的SPU数量#
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select
style_id,
count(style_id)
from
product_tb
group by
style_id
order by count(style_id) desc
本体不难只要把style_id进行一个聚类就可以了
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select
style_id,
count(style_id)
from
product_tb
group by
style_id
order by count(style_id) desc
本体不难只要把style_id进行一个聚类就可以了
相关推荐