Rules Hub
Coding Rules Library
← Back to all rules
Rule priority, scope & exceptions
Use this to align rules with the senior-level structure (P0/P1/P2, scope, exceptions/tradeoffs).
backend ruleP2universalStack: SQL
sqlstylereadability
Capitalize SQL keywords
Write SQL keywords in uppercase (SELECT, ORDER BY, WHERE) so queries read consistently and keywords stand out from identifiers.
PR: vinify-backend · org-mining-hist-2026-06Created: Jun 19, 2026
Bad example
Old codesql
| 1 | select id from wines order by points desc |
Explanation (EN)
Objašnjenje (HR)
Good example
New codesql
| 1 | SELECT id FROM wines ORDER BY points DESC |
Explanation (EN)
Objašnjenje (HR)