2329. Product Sales Analysis V ¶ SQL 1 2 3 4 5 6 7 8SELECT Sales.user_id, SUM(Sales.quantity * Product.price) AS spending FROM Sales INNER JOIN Product USING (product_id) GROUP BY user_id ORDER BY spending DESC;