This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Description
I did not find a better place to post an enhancement to the Google Query
Language, so I do it here.
A common task in SQL is to count identical values, returning distinct values in
one column and the count in another. Currently there is no possibility to do it
on 1 column data source. This could be solved by enhancing count function to
take "*" as an argument:
select A, count(*) group by A
Original issue reported on code.google.com by michal.k...@gmail.com on 20 Jan 2013 at 5:58