computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
510 B
8 lines
510 B
# 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) |