Loading...
Loading...
For writing and executing SQL queries - from simple single-table queries to complex multi-table JOINs and aggregations
npx skill4agent add langchain-ai/deepagents query-writingsql_db_schemasql_db_querywrite_todossql_db_schemaSELECT
c.Country,
ROUND(SUM(i.Total), 2) as TotalRevenue
FROM Invoice i
INNER JOIN Customer c ON i.CustomerId = c.CustomerId
GROUP BY c.Country
ORDER BY TotalRevenue DESC
LIMIT 5;