HI, can someone help me with this query.
lets say i have a table with the below values in the someNumber column.
I want to count the number of duplicates for each value in this column in a result set.
idNumber (Column)
123
456
789
000
123
123
I want the result to be:
idNumber | numberOfInstances
123 3
456 1
000 1
Can anyone help me out with this?
Thanks!!