From a9f8ae9b3b3c5bc688113ffd2703e9569dbad81d Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Mon, 5 Jan 2026 16:36:30 +0000 Subject: [PATCH] GROUPY -> GROUP --- general/development/policies/codingstyle/sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/general/development/policies/codingstyle/sql.md b/general/development/policies/codingstyle/sql.md index 01578d9793..f19060c49f 100644 --- a/general/development/policies/codingstyle/sql.md +++ b/general/development/policies/codingstyle/sql.md @@ -20,7 +20,7 @@ SQL fragments may be used in DML method with _select() suffix. - All SQL keywords are in UPPER CASE. - All SQL queries and fragments should be enclosed in double quotes. - Complex SQL queries should be on multiple lines. -- Multiline SQL queries should be right aligned on SELECT, FROM, JOIN, WHERE, GROUPY BY and HAVING. +- Multiline SQL queries should be right aligned on SELECT, FROM, JOIN, WHERE, GROUP BY and HAVING. - Use JOIN instead of INNER JOIN. - Do not use right joins. - Always use AS keyword for column aliases.