I have some records that looks like this.
I want to pull out as the following.
Is this possible?
I can only pull out the duplicate values but can't get that I want.
SELECT [COLUMN A] , COUNT([COLUMN A]) FROM [MYTABLE] GROUP BY [COLUMN A] HAVING COUNT([COLUMN A]) >1 ORDER BY [COLUMN A]
Anyone please help me. Thanks.