sql
Grounded corpus: tuning decisions (indexes, keyset pagination,
N+1, trigram search, lock contention) ground via the
database corpus — ./scripts-run <skills-root>/corpus-grounding/scripts/ground search --manifest <skills-root>/database/data/manifest.json "<symptom>".
When to use
Use when writing or reviewing raw SQL queries, migrations with raw statements, or seeders with raw SQL.
Do NOT use when:
- Eloquent/Query Builder queries (use
eloquent or database skill)
- Schema design (use
database skill)
Procedure: Write raw SQL
- Inspect call site & choose approach — identify every dynamic value flowing into the query, then pick: query builder when possible. Raw SQL only when query builder can't express the query.
- Parameterize — Every variable must use
? binding or named :param. Never interpolate PHP variables into SQL strings.
- Read the engine, then choose the syntax — check, in order: the project's DB config (
config/database.php default connection, DB_CONNECTION), a docker-compose.yml service image, a migration using engine-specific syntax. MySQL and MariaDB share the query-syntax world this skill writes in; PostgreSQL and MSSQL do not. If none of those declare an engine, say so and ask — do not assume one. A query written for the wrong engine passes review and fails in production.
- Verify — Run EXPLAIN on complex queries. Check that no PHP interpolation (
"$var", '{$var}') appears in SQL.
NEVER build SQL strings with PHP variable interpolation or concatenation.
ALWAYS use parameterized queries or query builder.
Conventions
→ See guideline php/sql.md for parameterization patterns, common mistakes, MariaDB syntax reference.
Quick reference
// ✅ Safe
DB::select('SELECT * FROM users WHERE email = ?', [$email]);
// ❌ SQL injection
DB::select("SELECT * FROM users WHERE email = '{$email}'");
Validate
- Verify every variable in SQL uses parameter binding (
? or named :param).
- Confirm MariaDB/MySQL syntax — not PostgreSQL or MSSQL.
- Run EXPLAIN on complex queries to check index usage.
- Check that no PHP variable interpolation (
"$var", '{$var}') appears in SQL strings.
Output format
- Parameterized SQL query using MariaDB/MySQL syntax
- EXPLAIN output for performance-critical queries
Gotcha
MySQL and MariaDB share a query-syntax world. They never share a migration
one. Same principle as database: one engine for writing a SELECT, two for
online-DDL semantics, lock behavior under ALTER, feature availability and
EXPLAIN output. Never carry a claim from the second group across the two
without naming the engine and version it was measured on.
- MariaDB and MySQL have subtle syntax differences.
- The model writes
$variable in SQL strings instead of ? placeholders.
GROUP BY with ONLY_FULL_GROUP_BY requires all non-aggregated columns.
- Use SQL types (
NULL, 1/0, JSON_ARRAY()) — not PHP equivalents.
Do NOT
- Do NOT interpolate PHP variables into SQL strings — always parameterize.
- Do NOT use PHP syntax (arrays, booleans, null) in raw SQL — use SQL equivalents.
- Do NOT write raw SQL when the query builder can express the same thing clearly.
Auto-trigger keywords
- raw SQL
- SQL query
- parameterized query
- MariaDB syntax
- SQL injection
1---2name: sql-writing3description: Use when writing raw SQL — MariaDB/MySQL syntax, parameterization, raw migrations, seeders with `DB::statement`; fires even on a pasted query asking 'why is this slow'.4---56# sql789> **Grounded corpus:** tuning decisions (indexes, keyset pagination,10> N+1, trigram search, lock contention) ground via the11> [`database`](../database/SKILL.md) corpus — `./scripts-run12> <skills-root>/corpus-grounding/scripts/ground search13> --manifest <skills-root>/database/data/manifest.json "<symptom>"`.1415## When to use1617Use when writing or reviewing raw SQL queries, migrations with raw statements, or seeders with raw SQL.1819Do NOT use when:20- Eloquent/Query Builder queries (use `eloquent` or `database` skill)21- Schema design (use `database` skill)2223## Procedure: Write raw SQL24251. **Inspect call site & choose approach** — identify every dynamic value flowing into the query, then pick: query builder when possible. Raw SQL only when query builder can't express the query.262. **Parameterize** — Every variable must use `?` binding or named `:param`. Never interpolate PHP variables into SQL strings.273. **Read the engine, then choose the syntax** — check, in order: the project's DB config (`config/database.php` default connection, `DB_CONNECTION`), a `docker-compose.yml` service image, a migration using engine-specific syntax. MySQL and MariaDB share the query-syntax world this skill writes in; PostgreSQL and MSSQL do not. **If none of those declare an engine, say so and ask — do not assume one.** A query written for the wrong engine passes review and fails in production.284. **Verify** — Run EXPLAIN on complex queries. Check that no PHP interpolation (`"$var"`, `'{$var}'`) appears in SQL.2930```31NEVER build SQL strings with PHP variable interpolation or concatenation.32ALWAYS use parameterized queries or query builder.33```3435## Conventions3637→ See guideline `php/sql.md` for parameterization patterns, common mistakes, MariaDB syntax reference.3839## Quick reference4041```php42// ✅ Safe43DB::select('SELECT * FROM users WHERE email = ?', [$email]);4445// ❌ SQL injection46DB::select("SELECT * FROM users WHERE email = '{$email}'");47```4849### Validate50511. Verify every variable in SQL uses parameter binding (`?` or named `:param`).522. Confirm MariaDB/MySQL syntax — not PostgreSQL or MSSQL.533. Run EXPLAIN on complex queries to check index usage.544. Check that no PHP variable interpolation (`"$var"`, `'{$var}'`) appears in SQL strings.5556## Output format57581. Parameterized SQL query using MariaDB/MySQL syntax592. EXPLAIN output for performance-critical queries6061## Gotcha6263**MySQL and MariaDB share a query-syntax world. They never share a migration64one.** Same principle as `database`: one engine for writing a `SELECT`, two for65online-DDL semantics, lock behavior under `ALTER`, feature availability and66`EXPLAIN` output. Never carry a claim from the second group across the two67without naming the engine and version it was measured on.6869- MariaDB and MySQL have subtle syntax differences.70- The model writes `$variable` in SQL strings instead of `?` placeholders.71- `GROUP BY` with `ONLY_FULL_GROUP_BY` requires all non-aggregated columns.72- Use SQL types (`NULL`, `1/0`, `JSON_ARRAY()`) — not PHP equivalents.7374## Do NOT7576- Do NOT interpolate PHP variables into SQL strings — always parameterize.77- Do NOT use PHP syntax (arrays, booleans, null) in raw SQL — use SQL equivalents.78- Do NOT write raw SQL when the query builder can express the same thing clearly.7980## Auto-trigger keywords8182- raw SQL83- SQL query84- parameterized query85- MariaDB syntax86- SQL injection