I have two tables with the same structure and data.
I want to merge this. I use the next query:
insert into CUSTOMER_A
select *
from CUSTOMER_A_TEMP
He gave an error with the primary key. The are the same.
How can I make it happen that these will be differend?
Pieter
I want to merge this. I use the next query:
insert into CUSTOMER_A
select *
from CUSTOMER_A_TEMP
He gave an error with the primary key. The are the same.
How can I make it happen that these will be differend?
Pieter
Comment