The INSERT INTO SELECT statement is used to add multiple new records into a database table at one time.
The syntax for INSERT INTO SELECT is as follows:
Note that this is the simplest form. The SELECT statement can easily contain WHERE , GROUP BY , and HAVING clauses, as well as table joins and aliases.
Please note the number of columns specified in the SELECT statement must be the same as the number of columns specified in the INSERT INTO statement.
We use the following tables for our example.
Table Store_Information
Table Sales_Data
Table Sales_Data has detailed sales information, while table Store_Information keeps summarized data on sales by store by day. To copy data from Sales_Data to Store_Information, we type in:
Please note that we specified the order of the columns to insert data into in the example above (the first column is Store_Name, the second column is Sales, and the third column is Txn_Date). While this is not absolutely necessary, it is a good practice to follow, as this can ensure that we are always inserting data into the correct column.
1. Which of the following SQL statement is valid? (There may be more than one answer)
a) INSERT INTO Store_Information SELECT * FROM Sales_Data WHERE Txn_Date = 'Feb-22-1999';
b) INSERT INTO Store_Information SELECT Store_Name, Sales, Txn_Date FROM Sales_Data WHERE
Txn_Date = 'Feb-22-1999';
c) INSERT INTO Store_Information (Sales, Txn_Date, Store_Name) SELECT SUM(Sales), Txn_Date,
Store_Name FROM Sales_Data WHERE Txn_Date = 'Feb-22-1999';
d) INSERT INTO Store_Information (Store_Name, Sales, Txn_Date) SELECT Store_Name, Sales,
Txn_Date FROM Sales_Data WHERE Product_ID BETWEEN 80 AND 100;
2. What data is inserted into the Store_Information table by the following
SQL statement?
INSERT INTO Store_Information SELECT Store_Name, SUM(Sales), Txn_Date FROM Sales_Data WHERE Product_ID < 101 GROUP BY Store_Name, Txn_Date;
3. Write a SQL statement that retrieves all sales data from the Sales_Data table and store total daily store sales data in the Store_Information table. How many rows are inserted?
1. b), d)
2. The following rows are inserted into the Store_Information table.
3. INSERT INTO Store_Information SELECT Store_Name, SUM(Sales), Txn_Date FROM Sales_Data GROUP BY Store_Name, Txn_Date;
8 rows are inserted.
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.