I think this should be simple but it still got me so I am hoping someone could help me out here:
I have a table with first_name and last_name and some of the first_name and last_name has duplicate records in that table. I am trying to remove the additional ones to it and I was thinking to try on
SELECT * FROM tblMember a
WHERE EXIST
(SELECT * FROM tblMember b
WHERE a.first_name=b.first_name and a.last_name=b.last_name)
to get the addional records back but have no luck, any idea? Thanks in advance
I have a table with first_name and last_name and some of the first_name and last_name has duplicate records in that table. I am trying to remove the additional ones to it and I was thinking to try on
SELECT * FROM tblMember a
WHERE EXIST
(SELECT * FROM tblMember b
WHERE a.first_name=b.first_name and a.last_name=b.last_name)
to get the addional records back but have no luck, any idea? Thanks in advance