select distinct city, college_name from students
> so the combination of city and college should be distinct we can not have it like
select city, distinct college_name from students
but we can have it with an aggregate e.g. for each city give me the count of distinct colleges :) eh!
select city, count(distinct college_name) from students
> so the combination of city and college should be distinct we can not have it like
select city, distinct college_name from students
but we can have it with an aggregate e.g. for each city give me the count of distinct colleges :) eh!
select city, count(distinct college_name) from students