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