fugue
fugue copied to clipboard
[FEATURE] GROUP BY can be implicit
GROUP BY
can be implicit for common cases
SELECT a, b, COUNT(*) AS c
GROUP BY a,b
Omitting GROUP BY
doesn't cause ambiguity in this case. So
SELECT a, b, COUNT(*) AS c
should be translated to the first query automatically.