{"prompts": [{"question": "What is the total sales?", "query": "SELECT SUM(Sales) as TotalSales FROM sales_data", "description": "This query returns the total sales from the dataset."}, {"question": "Show sales by region.", "query": "SELECT Region, SUM(Sales) as SalesByRegion FROM sales_data GROUP BY Region", "description": "This query returns the sales aggregated by region."}, {"question": "Show sales over time.", "query": "SELECT Date, Sales FROM sales_data ORDER BY Date", "description": "This query returns the sales over time, ordered by the date of sales."}, {"question": "Show the top 5 products by sales.", "query": "SELECT Product, SUM(Sales) as ProductSales FROM sales_data GROUP BY Product ORDER BY ProductSales DESC LIMIT 5", "description": "This query returns the top 5 products with the highest sales."}, {"question": "Plot the sales over time.", "query": "SELECT Date, Sales FROM sales_data ORDER BY Date", "description": "This query returns the sales over time to be plotted as a chart."}, {"question": "Show the number of sales by product category.", "query": "SELECT Product, COUNT(*) as SalesCount FROM sales_data GROUP BY Product", "description": "This query returns the count of sales for each product category."}]}