SQL INSERT

format_list_numberedLesson 4 of 4schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready
01

The INSERT INTO Statement

The INSERT INTO statement is used to insert new records in a table.

Example

INSERT INTO Customers (CustomerName, City, Country)
VALUES ('Cardinal', 'Stavanger', 'Norway');