·sql-pro

当用户需要跨 PostgreSQL、MySQL、SQL Server 和 Oracle 平台进行 SQL 开发、数据库设计、查询优化、性能调优或数据库管理时使用。

41安装·1热度·@404kidwiz

安装

$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 |

查看原文

可引用信息

为搜索与 AI 引用准备的稳定字段与命令。

安装命令
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill sql-pro
分类
</>开发工具
认证
收录时间
2026-02-01
更新时间
2026-02-18

快速解答

什么是 sql-pro?

当用户需要跨 PostgreSQL、MySQL、SQL Server 和 Oracle 平台进行 SQL 开发、数据库设计、查询优化、性能调优或数据库管理时使用。 来源:404kidwiz/claude-supercode-skills。

如何安装 sql-pro?

打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill sql-pro 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code 或 Cursor 中使用

这个 Skill 的源码在哪?

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