I have a table called ORG_MAP
, it contained 200 records, I executed a query to copy those 200 records to other table called ORG_MAP_1
(duplicate table of ORG_MAP
), but what happened was the same 200 records got inserted into the same ORG_MAP
table.
Now I want to remove those duplicated records. I don't know how to do that.
Please help me. I'm using db visualizer8.0.11 version.
the query I used was:
INSERT INTO METRICS.ORG_MAP (REPORT_END_DATE,ENTITY,ENTITY_TYPE,RELATIONSHIP,TARGET,TARGET_TYPE)
SELECT REPORT_END_DATE,ENTITY,ENTITY_TYPE,RELATIONSHIP,TARGET,TARGET_TYPE
FROM METRICS.ORG_MAP