The SQL INSERT INTO statement is the SQL command that adds new rows to an SQL table.
Anytime you want to add new rows to an SQL table. For example, if you need to have another product in the product table, then you would use the INSERT statement to insert that product.
The SQL INSERT command is used as follows.
SQL INSERT Statement Syntax
INSERT INTO Statement Example 1
The following example adds a new row into the product table. Before the INSERT takes place the folliwng information exists in the table:
product_nbr | product_name |
1001 | SQL Tool Light |
1002 | SQL Tool Professional |
1003 | SQL Tool Enterprise |
This INSERT INTO Statement is executed:
Results from the execution of the INSERT INTO statement are:
product_nbr | product_name |
1001 | SQL Tool Light |
1002 | SQL Tool Professional |
1003 | SQL Tool Enterprise |
2001 | Data Modeling Tool Professional |
Advertisements:
Infogoal.com is organized to help you gain mastery.
Examples may be simplified to facilitate learning.
Content is reviewed for errors but is not warranted to be 100% correct.
In order to use this site, you must read and agree to the
terms of use, privacy policy and cookie policy.
Copyright 2006-2020 by Infogoal, LLC. All Rights Reserved.