INSERT
Previous  Next


INSERT INTO table_name [ (column_1, column_2, ... column_n) ] (value_1, value_2, ... value_n)

This statement will cause the insertion of a table row in table table_name setting the specified columns; if no columns are specified, values set must respect the table columns definition order.

Note: calculated values are allowed