INSERT INTO customer
VALUES (
602,
1,
'IVAN',
'SIDOROV',
'ivan.sidiriv@gmail.com',
591,
1,
'2018-11-07',
NULL
)
| The above example inserts a new customer into the customer table. The data to be stored in each table column is specified in the VALUES clause, and a value must be provided for every column. The columns must be populated in the order in which they appear in the table definition. |