213-sql-performance

Eine Regel zur Verbesserung von SQL-Abfragen, also Datenbankbefehlen, damit sie weniger unnötige Daten verarbeiten.

In plain words
What is it for?
Zum Vergleichen mehrerer Abfragevarianten, Prüfen ihrer Ausführungspläne und Strukturieren komplexer Abfragen mit Filtern, Indizes und modularen Ansichten.
Why use it?
Sie hilft, langsame oder schwer wartbare Abfragen zu vermeiden, etwa durch unnötige Spalten, späte Filter oder ineffiziente Verknüpfungen.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/hamzaamjad/cursor-rules/213-sql-performance
Clone the repo
git clone --depth 1 https://github.com/hamzaamjad/cursor-rules
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 409 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00409
Opus 5 $0.00000 $0.00204
Sonnet 5 $0.00000 $0.00082
Haiku 4.5 $0.00000 $0.00041

Measured yesterday against content hash c414944141c7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

213-sql-performance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules/200-domain/213-sql-performance.mdc · 41 lines

What it actually says

sql-performance

Purpose: Ensure efficient, maintainable SQL queries. Research shows: Query optimization can reduce execution time by 10-100x and resource consumption by 50-90% (Ioannidis, 1996).

  • Avoid SELECT *; list required columns.
  • Use indexes, filter early in CTEs/subqueries.
  • Limit row scans: prefer WHERE clauses before joins.
  • Analyze and document query plans for long‐running queries.
  • Break complex logic into modular views when appropriate.
  • Tree of Thoughts Query Optimization:
    • Generate 3 query approaches before executing
    • Compare EXPLAIN ANALYZE results
    • Select approach with lowest cost/rows ratio
    • Example patterns:
      -- Approach 1: Subquery filtering
      SELECT * FROM (SELECT * FROM orders WHERE date > '2024-01-01') o
      JOIN customers c ON o.customer_id = c.id;
      
      -- Approach 2: Join then filter  
      SELECT * FROM orders o
      JOIN customers c ON o.customer_id = c.id
      WHERE o.date > '2024-01-01';
      
      -- Approach 3: CTE with materialization hint
      WITH recent_orders AS MATERIALIZED (
        SELECT * FROM orders WHERE date > '2024-01-01'
      )
      SELECT * FROM recent_orders ro
      JOIN customers c ON ro.customer_id = c.id;
      
  • Self-Consistency Validation: Run query 3 times, verify consistent execution plans
  • Performance Targets:
    • OLTP queries: <100ms for 95th percentile
    • Analytics queries: <5s for 90th percentile
    • Index hit ratio: >95% for frequent queries
  • Chain of Code Verification: Include query cost calculations in comments
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 41 lines · 0 tokens per session scan A c414944141c7

Subscribe to this mod's changes

213-sql-performance is a cursor rule published in the GitHub repository hamzaamjad/cursor-rules (2 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 409 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.