skills/sql-query/SKILL.md
Generate and optimize SQL queries for data retrieval and analysis
npx skillsauth add tatat/agents-playground sql-queryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate SQL queries for data retrieval, analysis, and reporting.
SELECT 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;
development
Extract structured data from web pages using CSS selectors and XPath
tools
Plan trips with itineraries, budgets, and local recommendations
tools
Translate text between languages while preserving meaning and context
development
Generate unit tests, integration tests, and test fixtures for code