Select INTO and INSERT into select two table replication statements simple Introduction _mysql

Source: Internet
Author: User
Insert is a common statement in T-SQL, insert into table (Field1,field2,...) VALUES (value1,value2,...) This form is essential in application development. But in our development, testing process, we often encounter situations that require table replication, such as copying part of a Table1 data to table2, or copying the entire table1 to table2, when we use SELECT INTO and INSERT into The SELECT table replicates the statement.
1.INSERT into SELECT statement
Statement form: Insert into Table2 (field1,field2,...) Select Value1,value2,... from Table1
The target table Table2 must exist, and because the target table Table2 already exists, we can insert a constant in addition to the fields Table1 the source table. Examples are as follows:
Copy Code code as follows:

INSERT into SELECT statement Copy table data
--1. Create a test table
Create TABLE Table1
(
A varchar (10),
b varchar (10),
C varchar (10),
CONSTRAINT [Pk_table1] PRIMARY KEY CLUSTERED
(
A ASC
)
) on [PRIMARY]
Create TABLE Table2
(
A varchar (10),
C varchar (10),
d int,
CONSTRAINT [Pk_table2] PRIMARY KEY CLUSTERED
(
A ASC
)
) on [PRIMARY]
Go
--2. Create test data
Insert into Table1 values (' Zhao ', ' ASDs ', ' 90 ')
Insert into Table1 values (' money ', ' ASDs ', ' 100 ')
Insert into Table1 values (' Sun ', ' ASDs ', ' 80 ')
Insert into Table1 values (' Lee ', ' ASDs ', null)
Go
SELECT * FROM Table2
--3.insert into a SELECT statement to replicate table data
Insert into Table2 (A, C, D) select a,c,5 from Table1
Go
--4. Show updated results
SELECT * FROM Table2
Go
--5. Delete Test table
Drop TABLE Table1
Drop TABLE Table2

2.SELECT into from statement
Statement form: SELECT vale1, value2 into Table2 from Table1
The target table Table2 does not exist because the table Table2 is created automatically at insert time and the specified field data in Table1 is copied to Table2. Examples are as follows:
SELECT into from to create a table and copy table data
Copy Code code as follows:

--1. Creating a Test table
CREATE TABLE Table1
(
a varchar (ten),
B varcha R (Ten),
C varchar (a),
CONSTRAINT [pk_table1] PRIMARY KEY CLUSTERED
(
a ASC
)
) on [PRI MARY]
Go
--2. Create test data
INSERT into Table1 values (' Zhao ', ' ASDs ', ', ')
Insert into Table1 values (' money ', ' ASDs ', ', '
insert into Table1 values (' grandchild ', ' ASDs ', ' ')
INSERT into Table1 values (' Lee ', ' ASDs ', null)
Go
--3.select into the FROM statement creates a table Table2 and copies the data
Select A,c into Table2 from Table1
Go
--4. Show updated results
SELECT * F Rom Table2
Go
--5. Delete Test table
drop table Table1
drop table Table2

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.