My Problem: I have got two MySQL tables. One table is called txns and another table is called archived_txns. Both of the tables has same columns. I use archived_txns to move data from txns using a PHP script.
I want to know how can I find out and delete the duplicate rows within these two tables. I am adding the Table structure for better reference.
This is the archived_txns table
This is the txns table
As stated in this example, I want to find out and delete the row with ID 3 from the txns table.