Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select col1, sum(col2) col2
(select distinct col1, col2 from tableName) a
group by col1
select
col1,
sum(distinct col2)
from @tbl
group by col1