Hello

I have a table that has a lot of duplicates in the Name column. I'd
like to only keep one row for each.

The following lists the duplicates, but I don't know how to delete the
duplicates and just keep one:

SELECT name FROM members GROUP BY name HAVING COUNT(*) > 1;

Thank you.

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to