if i have data like this:
Key Name
1 Dan
2 Tom
3 Jon
4 Tom
5 Sam
6 Dan
What is the sql query to bring back the records where the Name is repeated 2 or more times.
So the result i would want is
Tom
Dan
|
1
|
if i have data like this:
What is the sql query to bring back the records where the Name is repeated 2 or more times. So the result i would want is
|
|||
|
|
|
|
Couldn't be simpler...
This could also be extended to delete duplicates: |
|||
|
|
|
|
|
||
|
|
|
|
This could also be accomplished by joining the table with itself,
|
||
|
|