Quote:
Originally Posted by TheAllusionist
Thank you, I was hoping there was some syntax I could use to just update missing data. I guess not, thank you for your help.
Regards,
Russell
|
You could but it might be more complicated. You'd need to import the data into a temporary table (i.e. temp_user) and run a query like the following:
Code:
insert into user (select * from temp_user where userid not in (select userid from user));