UPDATE, DELETE, and INSERT Statements
The syntax of these statements is:
UPDATE table-name
DELETE FROM table-name [WHERE search-condition]
INSERT INTO table-name [(column-identifier [, column-identifier]...)]
Note that the query-specification element is valid only in the Core and Extended SQL grammars, and that the expression and search-condition elements become more complex in the Core and Extended SQL grammars.
Like other SQL statements, UPDATE, DELETE, and INSERT statements are often more efficient when they use parameters. For example,
the following statement can be prepared and repeatedly executed to insert
multiple rows in the Orders table:
SET column-identifier = {expression | NULL}
[, column-identifier = {expression | NULL}]...
[WHERE search-condition]
{query-specification | VALUES (insert-value [, insert-value]...)}