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