I have 2 tables (srcTable1 & destTable) that have identical schemas. I am trying to copy all rows from srcTable to destTable and ignore the duplicates. I thought I could
Have you tried SELECT DISTINCT ?
INSERT INTO destTable SELECT DISTINCT * FROM srcTable