Was this helpful?
Using Append to Add Data to Database Tables
The QUEL append statement is analogous to the SQL insert. The following QUEL append statement adds a row to the Personnel table, transferring the contents of simple fields lname, fname, and empnum to table columns last, first, and empnum, respectively.
append personnel (last = lname, 
  first = fname, 
  empnum = empnum);
Last modified date: 01/30/2023