fugue icon indicating copy to clipboard operation
fugue copied to clipboard

[FEATURE] GROUP BY can be implicit

Open goodwanghan opened this issue 2 years ago • 0 comments

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.

goodwanghan avatar Sep 14 '22 07:09 goodwanghan