# 3.筛选出rk为1的行,再选择所需数据即可 SELECT p.product_id, ROUND(total_quantity*unit_price,2) total_sales, ROUND(unit_price,2) unit_price, total_quantity, ROUND(total_quantity*unit_price/12,2) avg_monthly_sales, monthly_quantity max_monthly_quantity, CASE WHEN customer_age BETWEEN 1 AND 10 THEN '1-10' WHEN custom...