# Insert The "INSERT" statement is used to add new rows of data to a table in a database. There are two main forms of the INSERT command: `INSERT INTO` which, if columns are not named, expects a full set of columns, and `INSERT INTO table_name (column1, column2, ...)` where only named columns will be filled with data. Learn more from the following resources: - [@article@SQL INSERT](https://www.w3schools.com/sql/sql_insert.asp) - [@video@SQL INSERT Statement](https://www.youtube.com/watch?v=Yp1MKeIG-M4)