Hello,

I am pretty new in SQL an have a todo for work. Hopefully you understand my problem as I am not that fluent in english. Anyway:

What I got:
1 table
lots of columns

What I need:
the sum of all different values in all columns

What I found out:
SELECT
COUNT (DISTINCT SATZ_ID),
COUNT (DISTINCT KONSTANTE_5)
COUNT (...)
...
FROM INT_MA1AKI_MIG

## This is pretty much what I need, this shows all the number of different values in those columns BUT I don't want to write COUNT... for all of the columns, that would be too much

QUESTION:
Is it possible to print out the above automatically without typing so much?

Tanks