Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Analyze and optimize SQL queries by providing performance analysis, index recommendations, execution plan interpretation, and optimization suggestions.
Analyze and optimize SQL queries by providing performance analysis, index recommendations, execution plan interpretation, and optimization suggestions.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
分析并优化 SQL 查询,提升数据库性能。
查询性能分析 索引建议 执行计划解读 SQL 优化建议
"SQL优化" "查询优化" "sql optimization" "慢查询"
-- 检测 SELECT * 问题 SELECT * FROM users WHERE id = 1; -- 检测缺少 LIMIT SELECT name FROM users; -- 检测前导通配符 SELECT * FROM users WHERE name LIKE '%john%';
避免 SELECT *,只查询需要的列 添加 WHERE 条件和 LIMIT 避免 LIKE 前导通配符 使用索引列 避免嵌套子查询 使用 EXPLAIN 分析执行计划
{ "original": "SELECT * FROM users WHERE name LIKE '%john%'", "suggestions": [ "避免使用 SELECT *,只查询需要的列", "避免 LIKE 前导通配符", "添加 LIMIT 限制返回数量" ], "optimized": "SELECT id, name FROM users WHERE name LIKE '%john%' LIMIT 100" }
Data access, storage, extraction, analysis, reporting, and insight generation.
Largest current source with strong distribution and engagement signals.