Skip to content

INSERT INTO

Updates a table by inserting one or more rows into the table.

See the Snowflake documentation for more details.

Currently, BodoSQL only supports the following syntax:

INSERT INTO <name> [ ( <target_col_name> [ , ... ] ) ]
  {
    VALUES ( { <value> } [ , ... ] ) [ , ( ... ) ]  |
    <query>
  }