Previous Topic: Delete a TableNext Topic: Update Values in a Table


Insert a Row into a Table

To insert a row into a relational table, use the INSERT statement.

For example, to add a row into the APPLICATIONS table, issue this command:

ADDRESS SQL
  "INSERT INTO APPLICATIONS",
    "(APPL_ID, USER_ID, UPDATE, STATUS)",
      "VALUES ('APPL33' 'TSOUSR33' DATE '1992-04-15' 'DOWN')"