Skip to content
Snippets Groups Projects
Commit 095d347b authored by Arseniy Volynets's avatar Arseniy Volynets :boy_tone5:
Browse files

feat: support HAVING clause

* added HAVING clause. HAVING condition may contain aggregates. Any column outside aggregate function must be part of a grouping expression. 

E.g: `select sum(a) from t group by b having c > 1` Above query is invalid, because `c` is not a grouping expression.
parent e057a7d5
No related branches found
No related tags found
1 merge request!1414sbroad import
Showing
with 1703 additions and 122 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment