SQL INSERT INTO
In the previous sections, we have seen how to retrieve information from tables. But how do these rows of data get into these tables in the first place? This is what this section, covering the INSERT statement, and the next section, covering the UPDATE statement, are about.
There are essentially basically two ways to INSERT data into a table. One is to insert it one row at a time, and the other is to insert multiple rows at a time. Let’s first look at how we may INSERT data one row at a time: