January 2020
Beginner
256 pages
5h 11m
English
In this lesson, you will learn how to insert data into tables using the SQL INSERT statement.
SELECT is undoubtedly the most frequently used SQL statement (which is why the last 14 lessons were dedicated to it). But there are three other frequently used SQL statements that you should learn. The first one is INSERT. (You’ll get to the other two in the next lesson.)
As its name suggests, INSERT is used to insert (add) rows to a database table. Insert can be used in several ways:
Inserting a single complete row
Inserting a single partial row
Inserting the results of a query
Let’s now look ...
Read now
Unlock full access