I am refreshing myself on SQL and that database I was working on glitched (online training database, not important) and duplicated 1 of my entries. It's just a firstname, lastname, age database.
I want to remove the duplicate entry - but can't just do a simple remove/where statement because it would delete both entries.
I know how to remove all the duplicates from a database using a temporary table and renaming it - but that seems like overkill and I suspect there is an easier way.