Install
openclaw skills install sql-reportsConnects to SQL Server to retrieve and generate monthly, quarterly, and yearly delivery order reports with performance comparisons and growth metrics.
openclaw skills install sql-reportsQuery Delivery Orders from SQL Server and generate delivery reports for business analysis.
This skill connects to a SQL Server database to extract and analyze delivery order data. It's designed for warehouse managers and logistics teams who need quick access to delivery statistics without writing SQL queries manually.
pip install pyodbcReturns monthly delivery summary with total orders, revenue, and delivery status breakdown.
Output: Table with Month, TotalOrders, TotalRevenue, Delivered, Pending, Cancelled columns
Compare delivery performance between two months.
Input: Month1 (YYYY-MM), Month2 (YYYY-MM) Output: Side-by-side comparison table
Generate comprehensive quarterly delivery report with trends.
Input: Year (YYYY), Quarter (1-4) Output: Detailed report with weekly breakdown
Annual delivery summary with year-over-year growth metrics.
Input: Year (YYYY) Output: Annual statistics and growth indicators
Run from command line:
python query.py summary_by_month
python query.py monthly_comparison 2025-01 2025-02
python query.py quarterly_report 2025 1
python query.py summary_by_year 2025