Page 1 of 1

Transfer records from one table to another and validate

Posted: Mon Jun 12, 2017 6:24 am
by eayvl

Is it possible to transfer records from one table to another and validate if they already exist?

-The validation must be by name, nss and curp.

Table1
Filed (ID,name, nss, curp, rfc, birthdate, age, address)

Table2
Filed (ID,name, nss, curp, rfc, birthdate, age, address)

Thanks.


Re: Transfer records from one table to another and validate

Posted: Mon Jun 12, 2017 10:29 am
by arbei

You can

  1. use Conn()->Execute(<SQL>) to retrieve the records.
  2. Use ew_ExecuteScalar(<SQL>) to validate the exists in the destination table with the SQL.
  3. Use ew_Execute(<SQL>) to run the insert statement.

Read help file topic: "Server Events and Client Scripts" -> "Some Global Functions".