September 2015
Beginner
288 pages
5h 39m
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 past 15 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, UPDATE and DELETE, 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:
To insert a single complete row
To insert a single partial row
To insert multiple rows
To ...
Read now
Unlock full access