·sql-pro

Use when user needs SQL development, database design, query optimization, performance tuning, or database administration across PostgreSQL, MySQL, SQL Server, and Oracle platforms.

41Installs·2Trend·@404kidwiz

Installation

$npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill sql-pro

SKILL.md

Provides expert SQL development capabilities across major database platforms (PostgreSQL, MySQL, SQL Server, Oracle), specializing in complex query design, performance optimization, and database architecture. Masters ANSI SQL standards, platform-specific optimizations, and modern data patterns with focus on efficiency and scalability.

| Need aggregation + row-level detail | Window function | SELECT name, salary, AVG(salary) OVER () as avgsalary FROM employees | | Only aggregated results needed | GROUP BY | SELECT dept, AVG(salary) FROM employees GROUP BY dept | | Ranking/row numbering | Window function (ROWNUMBER, RANK, DENSERANK) | ROWNUMBER() OVER (ORDER BY sales DESC) |

| Running totals / moving averages | Window function with frame | SUM(amount) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) | | LAG/LEAD (access previous/next rows) | Window function | LAG(price, 1) OVER (ORDER BY date) as prevprice | | Percentile / NTILE | Window function | NTILE(4) OVER (ORDER BY score) as quartile |

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill sql-pro
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is sql-pro?

Use when user needs SQL development, database design, query optimization, performance tuning, or database administration across PostgreSQL, MySQL, SQL Server, and Oracle platforms. Source: 404kidwiz/claude-supercode-skills.

How do I install sql-pro?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill sql-pro Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/404kidwiz/claude-supercode-skills