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

`HAVING` section code states `GROUP BY`  instead of the appropriate keyword.

(cherry picked from commit 9d505dc3db51e250fdf1b44e4d952dcd97bf1bc1)
This commit is contained in:
Daniel Andion 2019-10-30 02:36:08 +11:00 committed by Marios Trivyzas
parent 7c944d26c5
commit d0cbbf9d58
No known key found for this signature in database
GPG Key ID: 8817B46B0CF36A3F
1 changed files with 1 additions and 1 deletions

View File

@ -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: