Hello, gents.
Just a quick question:
I've got two tables.
First one (Master) has 15 rows and about 67k records,
Second one (Update) has 4 of those the first has and about 89k records.
Some of Update's key records are equal to those the Master has.
I need a SQL to insert the records from Update that do not exist in Master.
In other words SQL condition for insert should be smth like this (I used a kind of js):
if (master.row1 <> update.row1){insert}
else{return false}
If you have any ideas, please help.
Thanks in advance,
Ray
Just a quick question:
I've got two tables.
First one (Master) has 15 rows and about 67k records,
Second one (Update) has 4 of those the first has and about 89k records.
Some of Update's key records are equal to those the Master has.
I need a SQL to insert the records from Update that do not exist in Master.
In other words SQL condition for insert should be smth like this (I used a kind of js):
if (master.row1 <> update.row1){insert}
else{return false}
If you have any ideas, please help.
Thanks in advance,
Ray