I am trying to get the syntax down but shouldnt something like this work
insert into stores_new (Street_Address,City,) where stores_new.Infomanager_location_code=infomanager_s tores.Infomanager_location_code;
Stores_new = my Database
Infomanager_location_code = unique identifier
infomanager_stores = database created from csv file
On the previous example I am not quite understanding what I have to qualify.. are you refering to ??
update stores_new, infomanager_stores
SET stores.new.Address = infomanager_stores.Address,
stores_new.city = infomanager_stores.city,
stores_new.state = infomanager_stores.state,
stores_new.zip = infomanager_stores.zip
WHERE stores_new.uniqueid = infomanager_stores.uniqieid