This is my general quiry
update `Antrix`.`creat ure_proto`
set `health` = (select `health` from `antrix2`.`crea ture_proto` where `entry` = (select entry from `Antrix`.`creat ure_proto`);
I have a dB named Antrix and one named antrix2
I want to overwrite the data in colums Antrix.creature _proto.(health) with the data from antrix2.creatur e_proto.(health )....
this works... but hte problem is.... where entries in Antrix.entry arent in antrix2.entry.. it sets the data from Antrix.health to 0 on those entries.
Any ideas how to stop this?
update `Antrix`.`creat ure_proto`
set `health` = (select `health` from `antrix2`.`crea ture_proto` where `entry` = (select entry from `Antrix`.`creat ure_proto`);
I have a dB named Antrix and one named antrix2
I want to overwrite the data in colums Antrix.creature _proto.(health) with the data from antrix2.creatur e_proto.(health )....
this works... but hte problem is.... where entries in Antrix.entry arent in antrix2.entry.. it sets the data from Antrix.health to 0 on those entries.
Any ideas how to stop this?
Comment