Loading...
Loading...
Generate and optimize SQL queries for data retrieval and analysis
npx skill4agent add tatat/agents-playground sql-querySELECT column1, column2
FROM table_name
WHERE condition
ORDER BY column1
LIMIT 100;SELECT category, COUNT(*) as count, AVG(price) as avg_price
FROM products
GROUP BY category
HAVING COUNT(*) > 10;SELECT
name,
department,
salary,
RANK() OVER (PARTITION BY department ORDER BY salary DESC) as rank
FROM employees;