I have the following column , i want to get the total count of unique rows next to each row . How would i do that ?
The Column i have | Col i want
52806 9
52806 9
52806 9
53317 9
54620 9
54722 9
54830 9
54917 9
54923 9
54942 9
54947 9
54947 9
i searched for the appropriate answer online i could not find it anywhere !! I don't want to use group by clause because its a big query
select count(distinct column) from mytable?