Browse Source

SQL: [Docs] Typo in HAVING section (#48609)

`HAVING` section code states `GROUP BY`  instead of the appropriate keyword.
Daniel Andion 6 years ago
parent
commit
9d505dc3db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/sql/language/syntax/commands/select.asciidoc

+ 1 - 1
docs/reference/sql/language/syntax/commands/select.asciidoc

@@ -235,7 +235,7 @@ The `HAVING` clause can be used _only_ along aggregate functions (and thus `GROU
 
 [source, sql]
 ----
-GROUP BY condition
+HAVING condition
 ----
 
 where: