Comment by yen223
4 years ago
> My only gripe is the 'auto-generated' column names for aggregates
For what it's worth, a similar problem already exists with SQL. Something simple like
select count(*) from my_table;
automatically aliases the column to `count`, even if `my_table` has a column called `count`.
In practice, I don't think this is a major problem.
Which database does that? MSSQL doesn't assign any name to the column in this case.
Postgres does this