Saturday 13 December 2014

SQL INSERT INTO SELECT

SQL > SQL Commands > Insert Into Select Statement
In the previous section, we learned about how to insert individual values into a table, one row at a time. What if we want to insert multiple rows into a table? In addition to INSERT INTO, we will combine it with the SELECT statement to achieve this goal. If you are thinking whether this means that you are using information from another table, you are correct. The syntax is as follows:
INSERT INTO "table1" ("column1", "column2", ...)
SELECT "column3", "column4", ...
FROM "table2";
Note that this is the simplest form. The entire statement can easily contain WHEREGROUP BY, and HAVING clauses, as well as table joins and aliases.
Assuming that we have the following tables:,
Table Store_Information
Column NameData Type
Store_Namechar(50)
Salesfloat
Txn_Datedatetime
Table Sales_Data
Column NameData Type
Store_Namechar(50)
Product_IDinteger
Salesfloat
Txn_Datedatetime
Table Sales_Data has detailed sales information, while table Store_Information keeps summarized data on sales by store by day. To move data from Sales_Data toStore_Information, we would type in:
INSERT INTO Store_Information (Store_Name, Sales, Txn_Date)
SELECT Store_Name, SUM(Sales), Txn_Date
FROM Sales_Information
GROUP BY Store_Name, Txn_Date;
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.

No comments:

Post a Comment