How do I select all columns in a table and an aggregate function in a convenient way?
I.e. say that I have a table with 100 columns, and I want to send the following
SELECT Max(Columns 44), ALL OTHER COLUMNS
FROM zz
Group by ALL OTHER COLUMNS
Thanks!