Is there any way to use COUNT and return with a COUNT column for each row. If i were to use GROUP BY it would only return 1 row for each value. I want it to show duplicates.
Example Data:
City
Seattle
Dallas
Seattle
New York
Boston
Boston
Portland
I would like to return:
Seattle 2
Dallas 1
Seattle 2
New York 1
Boston 2
Boston 2
Portland 1