The VALUES command specifies the values for an INSERT INTO statement.
The following SQL inserts a new record into the “Customers” table:
INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country) |
The following SQL inserts a new record, populating only the “CustomerName”, “City”, and “Country” columns (CustomerID will be automatically generated):
INSERT INTO Customers (CustomerName, City, Country) VALUES (‘Cardinal’, ‘Stavanger’, ‘Norway’); |