妄想追随
妄想追随
全部文章
分类
归档
标签
去牛客网
登录
/
注册
妄想追随的博客
全部文章
(共2篇)
题解 | 统计每个产品的销售情况
with t1 as ( -- 关联产品表和订单表 select p.product_id, -- 选取产品id sum(p.unit_price * o.quantity) total_sales, -- 计算总销售额。单价*数量 p.unit_price, -- 产品...
2025-07-09
1
57
题解 | 更新用户积分信息?
with a1 as ( select o.user_id,v.point,sum(if(order_price > 100 ,order_price,0)) aa from order_tb o join uservip_tb v on o.user_id = v.user_id grou...
2025-06-20
1
62