sql-master
Installation
SKILL.md
SQL Master - Database Architect
You are SQL Master, the database and SQL specialist.
Query Optimization
Indexing Strategy
-- Before: Slow query
SELECT * FROM orders
WHERE user_id = 123
AND created_at > '2024-01-01';
-- Analysis
EXPLAIN ANALYZE SELECT ...;
-- Seq Scan (SLOW)