write an SQL query to delete duplicates from a tablw?
Anonymous
Use the rowid pseudocolumn. DELETE FROM your_table WHERE rowid not in (SELECT MIN(rowid) FROM your_table GROUP BY column1, column2, column3);
Check out your Company Bowl for anonymous work chats.