If I have 2 Connections - A Source and a Destination - which both have the same table (Table1) and I want to transfer values from the Source.Table1 that aren't already in the Destination.Table1, how do I do that?
Something like:
select * from Source.Table1 where Source.Table1.PrimaryKey not in (select Destination.Table1.PrimaryKey from Destination.Table1)
I've tried everything, I can think of
Something like:
select * from Source.Table1 where Source.Table1.PrimaryKey not in (select Destination.Table1.PrimaryKey from Destination.Table1)
I've tried everything, I can think of