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:

  1. i need query information user class
  2. 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

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -