Write an SQL query to find the top 5 product categories with the highest total sales. Display the sales figures in descending order.
SELECT category, SUM(sales) AS total_sales FROM sales GROUP BY category ORDER BY total_sales DESC LIMIT 5;
SELECT SUM(sales) AS total_sales, category FROM sales GROUP BY category ORDER BY total_sales;
Baroque art features strong contrasts, while Rococo art prefers more subtle transitions
Baroque art is generally larger in scale than Rococo art

Computer Software Exercises are loading ...