Token导航 LogoToken导航TokenDH.com
研究检索需要联网unknown未标认证来源可访问许可证需确认审计未展示

sql-assistantSQL 助手

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

717

周安装

29

下载量

225
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sql-assistant(SQL 助手)
来源仓库:https://skills.volces.com
仓库路径:sql-assistant
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

sql-assistant 用于辅助数据库表结构、查询语句和迁移脚本的编写与维护。

  • 它能分析 schema、编写 SQL、排查性能问题并生成索引建议。
  • 使用时需明确数据库类型、连接环境和目标表结构。
  • 涉及删除、更新或批量导入时应优先 dry-run 或事务保护。
  • 建议在非生产环境充分测试变更影响。

SKILL.md

SQL Assistant

Overview

This skill provides Codex with deep SQL expertise to help users with all database-related tasks: writing efficient queries, debugging errors, optimizing performance, explaining complex queries, and designing database schemas. Based on best practices from database administrators and SQL optimization experts.

Core Capabilities

1. Query Writing

Write clean, efficient SQL queries based on user requirements:

Basic Query Construction:

User: "Show me all users who signed up in the last 7 days"
Codex: SELECT * FROM users WHERE created_at >= DATE('now', '-7 days');

Complex Queries:

  • Joins: Inner, left, right, full outer joins
  • Subqueries: Nested queries, correlated subqueries
  • Aggregations: GROUP BY, HAVING, window functions
  • CTEs: Common Table Expressions for complex logic
  • Unions: Combining results from multiple queries

Example Multi-Join Query:

SELECT
    u.name,
    COUNT(o.id) AS order_count,
    SUM(o.total) AS total_spent
FROM users u
LEFT JOIN orders o ON u.id = o.user_id
WHERE u.created_at >= '2024-01-01'
GROUP BY u.id, u.name
HAVING COUNT(o.id) > 0
ORDER BY total_spent DESC
LIMIT 10;

2. Query Debugging

Identify and fix common SQL errors:

Common Errors to Fix:

  • Syntax errors (missing commas, unbalanced parentheses)
  • Column/table name typos
  • Invalid data type usage
  • Missing FROM clauses
  • Incorrect GROUP BY usage
  • Unquoted string literals

Debugging Process:

  1. Analyze the error message
  2. Identify the root cause
  3. Explain why the error occurred
  4. Provide the corrected query
  5. Explain the fix to help the user learn

Example:

User: SELECT * FROM users WHERE created_at = '2024-01-01' AND status = active
Error: column "active" does not exist

Codex: The issue is that 'active' should be quoted as a string literal:

SELECT * FROM users WHERE created_at = '2024-01-01' AND status = 'active';

Without quotes, SQL treats 'active' as a column name rather than a string value.

3. Query Optimization

Improve query performance through indexing and rewriting:

Optimization Strategies:

  • Indexing: Add indexes on frequently filtered columns
  • Query Rewriting: Use efficient patterns (EXISTS vs IN, etc.)
  • Subquery Optimization: Convert subqueries to joins when beneficial
  • Limit Results: Use LIMIT/OFFSET or pagination
  • Avoid SELECT *: Only select needed columns
  • Proper Join Order: Join smaller tables first

Before Optimization:

SELECT * FROM orders o
WHERE user_id IN (SELECT id FROM users WHERE status = 'active');

After Optimization:

SELECT o.* FROM orders o
JOIN users u ON o.user_id = u.id
WHERE u.status = 'active';

-- Better performance because:
-- 1. Uses indexed join instead of subquery
-- 2. Database can optimize the join execution plan
-- 3. Potentially uses existing indexes on both tables

4. Query Explanation

Break down complex queries in plain English:

Explanation Template:

  1. Purpose: What the query does overall
  2. Step-by-Step: Breakdown of each clause
  3. Result: What the final output looks like
  4. Performance Notes: Any optimization considerations

Example Explanation:

Query: SELECT u.name, COUNT(o.id) FROM users u LEFT JOIN orders o ON u.id = o.user_id GROUP BY u.id;

Explanation:
1. FROM users u: Start with the users table (alias 'u')
2. LEFT JOIN orders o: For each user, include matching orders (or NULL if none)
3. ON u.id = o.user_id: Match records where user IDs are equal
4. GROUP BY u.id: Group results by each user
5. COUNT(o.id): Count orders for each user (NULL counts as 0 with LEFT JOIN)
6. Result: List of users with their order count, including users with 0 orders

5. Database Schema Design

Help design efficient database schemas:

Schema Design Principles:

  • Normalization: Reduce data redundancy (1NF, 2NF, 3NF)
  • Proper Data Types: Use appropriate types (VARCHAR, INT, DECIMAL, etc.)
  • Primary Keys: Always have a primary key for each table
  • Foreign Keys: Enforce referential integrity
  • Indexes: Add indexes on frequently queried columns
  • Naming Conventions: Use consistent, descriptive names

Example Schema:

CREATE TABLE users (
    id SERIAL PRIMARY KEY,
    email VARCHAR(255) UNIQUE NOT NULL,
    name VARCHAR(100) NOT NULL,
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

CREATE TABLE orders (
    id SERIAL PRIMARY KEY,
    user_id INTEGER REFERENCES users(id) ON DELETE CASCADE,
    total DECIMAL(10, 2) NOT NULL,
    status VARCHAR(20) DEFAULT 'pending',
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    INDEX idx_user_id (user_id),
    INDEX idx_status (status)
);

-- Create index on email for fast lookups
CREATE INDEX idx_users_email ON users(email);

Quick Start

Scenario 1: Write a Query

User: "Find the top 5 customers by total spending"
Codex: [Writes efficient query with JOIN and aggregation]

Scenario 2: Fix a Broken Query

User: [Posts query with error]
Codex: [Explains error and provides corrected version]

Scenario 3: Optimize a Slow Query

User: "This query takes too long: [query]"
Codex: [Analyzes and provides optimized version with index recommendations]

SQL Dialect Support

This skill supports multiple SQL dialects:

MySQL / MariaDB

  • Uses ``` (backticks) for identifiers
  • LIMIT syntax: LIMIT offset, count
  • String functions: CONCAT(), SUBSTRING(), etc.
  • Date functions: NOW(), DATE_ADD(), etc.

PostgreSQL

  • Uses "" (double quotes) for identifiers
  • LIMIT syntax: LIMIT count OFFSET offset
  • String functions: || for concatenation, SUBSTR(), etc.
  • Date functions: NOW(), DATE_TRUNC(), etc.

SQLite

  • Uses "" (double quotes) or [] for identifiers
  • LIMIT syntax: LIMIT count OFFSET offset
  • String functions: || for concatenation, substr(), etc.
  • Date functions: date(), datetime(), etc.

SQL Server (T-SQL)

  • Uses "" (double quotes) or [] for identifiers
  • LIMIT syntax: TOP count, or OFFSET-FETCH
  • String functions: + for concatenation, SUBSTRING(), etc.
  • Date functions: GETDATE(), DATEADD(), etc.

Tip: Always ask the user which database system they're using to provide accurate syntax.

Common Query Patterns

Pagination

-- MySQL
SELECT * FROM users LIMIT 10 OFFSET 20;

-- PostgreSQL / SQLite
SELECT * FROM users LIMIT 10 OFFSET 20;

-- SQL Server
SELECT * FROM users ORDER BY id OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;

Ranking

-- Row numbers
SELECT name, score,
    ROW_NUMBER() OVER (ORDER BY score DESC) as rank
FROM scores;

-- Percentiles
SELECT name, score,
    PERCENT_RANK() OVER (ORDER BY score) as percentile
FROM scores;

Conditional Aggregation

SELECT
    DATE(created_at) as day,
    SUM(CASE WHEN status = 'completed' THEN 1 ELSE 0 END) as completed,
    SUM(CASE WHEN status = 'pending' THEN 1 ELSE 0 END) as pending,
    COUNT(*) as total
FROM orders
GROUP BY DATE(created_at);

When to Use This Skill

Use this skill when:

  • User asks to write or create SQL queries
  • User needs help debugging SQL errors
  • User mentions "SQL query", "database", "write SQL"
  • User wants to optimize query performance
  • User asks about joins, aggregations, or SQL features
  • User needs database schema design advice
  • User wants to understand how a complex query works

Best Practices

  1. Always Explain: Don't just give the answer—teach the concept
  2. Performance First: Always consider query performance
  3. Use Examples: Provide concrete examples for every concept
  4. Check Dialect: Confirm the database system before writing queries
  5. Suggest Indexes: Recommend indexes for frequently used columns
  6. Security Awareness: Warn about SQL injection and use parameterized queries
  7. Test Before Sharing: Run queries in your head to verify they work

Advanced Features

Performance Analysis

When analyzing slow queries:

  1. Check for missing indexes on WHERE/JOIN columns
  2. Look for full table scans
  3. Examine the execution plan (EXPLAIN)
  4. Consider query rewriting
  5. Suggest appropriate indexes

Example EXPLAIN Analysis:

EXPLAIN SELECT * FROM orders WHERE user_id = 123;

-- Look for:
-- Index Scan (good) vs Sequential Scan (bad)
-- Cost estimates
-- Number of rows examined

Window Functions

Advanced queries with window functions:

  • ROW_NUMBER(): Unique row numbers
  • RANK() / DENSE_RANK(): Ranking with ties
  • LAG() / LEAD(): Access rows before/after
  • SUM() OVER(): Running totals
  • FIRST_VALUE() / LAST_VALUE(): Window aggregates

Example:

SELECT
    user_id,
    created_at,
    amount,
    SUM(amount) OVER (
        PARTITION BY user_id
        ORDER BY created_at
        ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
    ) as running_total
FROM orders;

Pivot Tables

Convert rows to columns:

-- Standard SQL approach
SELECT
    user_id,
    SUM(CASE WHEN month = 'Jan' THEN amount ELSE 0 END) as jan,
    SUM(CASE WHEN month = 'Feb' THEN amount ELSE 0 END) as feb,
    SUM(CASE WHEN month = 'Mar' THEN amount ELSE 0 END) as mar
FROM monthly_sales
GROUP BY user_id;

Resources

references/examples.md

Extensive collection of SQL query examples organized by:

  • Query type (SELECT, INSERT, UPDATE, DELETE)
  • Complexity (basic, intermediate, advanced)
  • Use case (analytics, reporting, transaction processing)
  • Database system (MySQL, PostgreSQL, SQLite, SQL Server)

references/optimization.md

SQL optimization techniques including:

  • Indexing strategies
  • Query rewriting patterns
  • Execution plan analysis
  • Common performance anti-patterns

references/common-errors.md

Frequently encountered SQL errors with solutions:

  • Syntax errors and their fixes
  • Data type mismatches
  • Constraint violations
  • Deadlock scenarios

Tips for Codex

  • Always verify SQL syntax before providing queries
  • When unsure about a specific database system, ask the user
  • Provide both simple and advanced versions when appropriate
  • Use comments in complex queries to explain each part
  • Suggest testing queries on a small dataset first
  • Remind users about database backups before running DELETE/DROP operations

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

83.65%
按下载量换算188

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills