题解 | #某宝店铺的SPU数量#
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select style_id,count(inventory)spu from product_tb group by style_id order by spu desc;
这个题有点绕,看着很难,但是读懂题意之后就很简单了
某宝店铺的SPU数量
https://www.nowcoder.com/practice/2b6ea6b8fe634d2cbc39be46db411ca4
select style_id,count(inventory)spu from product_tb group by style_id order by spu desc;
这个题有点绕,看着很难,但是读懂题意之后就很简单了
相关推荐