Data Extraction and Transformation
Example Prompt:
Example Response:
SELECT ProductID, SUM(Revenue) AS TotalRevenue
FROM sales_data
GROUP BY ProductID
ORDER BY TotalRevenue DESC;
SELECT DATE_FORMAT(Date, '%Y-%m') AS Month, SUM(Revenue) AS TotalRevenue
FROM sales_data
GROUP BY Month
ORDER BY Month;
SELECT Region, SUM(Revenue) AS TotalRevenue
FROM sales_data
GROUP BY Region
ORDER BY TotalRevenue DESC;
SELECT ProductID, SUM(QuantitySold) AS TotalQuantity
FROM sales_data
GROUP BY ProductID
ORDER BY TotalQuantity DESC
LIMIT 10;
SELECT Date, SUM(Revenue) AS DailyRevenue
FROM sales_data
GROUP BY Date
ORDER BY Date;
Related Tasks:
Report Generation
Example Prompt:
Example Response:
Related Tasks:
Dashboard Design and Implementation
Example Prompt:
Example Response:
Related Tasks:
Data Model Design
Example Prompt:
Example Response:
Related Tasks:
Stakeholder Presentation Preparation
Example Prompt:
Example Response:
Related Tasks: