INSERT

partiql-insert

Value specification

Depends on the attributes type. Refer to documentation for details.

partiql-data-types

  • In this example a new employee will be added to the table
  • Notice how the skill set element is added using «»
INSERT INTO Employee
VALUE {
    'LoginAlias': 'katek', 
    'FirstName': 'Kate', 
    'LastName': 'Kilmer',
    'Designation': 'Manager',
    'ManagerLoginAlias': 'johns',
    'Skills': <<'administration'>>
}