sql - Parse.com: Performing "SELECT FROM - INSERT INTO" operations in Classes -
i'm making changes in classes estructure in parse.com (before migration own sever). need move masively information 1 table another:
- i need query information user class
- i must insert result of step 1 in vehicles class
if sql, like:
insert vehicles (veh_brand, veh_line, veh_model, veh_cap) (select veh_brand, veh_line, veh_model, veh_cap user);
is there way perform operation? i'm not understanding weel parse.com documentation. must run operation?
thanks in advance.
remove values
keyword
insert vehicles (veh_brand, veh_line, veh_model, veh_cap) select veh_brand, veh_line, veh_model, veh_cap user
Comments
Post a Comment