题解 | #某宝店铺的SPU数量#
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select
style_id,
count(item_id) as SPU_num
from
product_tb
group by
1
order by
SPU_num desc
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select
style_id,
count(item_id) as SPU_num
from
product_tb
group by
1
order by
SPU_num desc
相关推荐