Into the data: Day 32
Today, I learned about the “Insert Into” statement. This allows me us to enter new data in a table.
The syntax goes like this;
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...)
Where table_name is the name of the table. The column1, 2 and so on are the headers of each column and the values are the values that we will be entering…