The INSERT statement is used to add new records to a database table.
Example:
SQLCommand = "INSERT INTO personen " & _
"(name, vorname, personalnummer, gehalt, geburtstag) " & _
"VALUES('Moyo', 'Yannick', 4711, 2900, '02.01.19976')"
This command inserts a new record into the personen table.


- The field names in parentheses specify the number and order of the values listed after VALUES, which must match.
- Note the use of single quotes around string and date values — these are mandatory in SQL.
- When inserting data, the same types of errors can occur as with updates, such as violating data types, null constraints, or unique indexes.