Can you get the distinct combination of 2 different fields in a database table? if so, can you provide the SQL example.
If you still want to group only by one column (as I wanted) you can nest the query:
select c1, count(*) from (select distinct c1, c2 from t) group by c1