Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

INSERT πŸ“

Learning Goals

By the end of this section you will:

  • understand that the INSERT INTO statement is used to add rows of data to an SQL table.

  • know how to add new data to an SQL table that does not have an autoincrement primary key

  • know how to add new data to an SQL table that does have an autoincrement primary key

  • know how to add data that spans mutiple tables

INSERT INTO StatementΒΆ

The INSERT INTO statement in SQL is used to add new rows of data into a table.

Β 

Go to the W3schools Tutorial on the INSERT Statement and complete their exercises.