Mysql inserts query data from a table into another table _ MySQL

Source: Internet
Author: User
How mysql inserts query data from a table into another table

MySQL database is used as an example to describe howUse the SQL command line to import all data of a table or data of a specified field to the target table.. This methodThe same applies to SQL Server databases, that is, T-SQL..

Category 1,If the fields of the two tables (the export table and the target table) are consistent and you want to insert all the data, you can use this method:

Insert into target table SELECT * from source table;

For example, to insert the articles table into the newArticles table, you can use the following SQL statement:

INSERT INTO  newArticles  SELECT  * FROM  articles ;

Category 2,If you only want to import a specified field, you can use this method:

Insert into target table (Field 1, field 2,...) SELECT field 1, field 2,... FROM source table;

Note that the fields in the preceding two tables must be consistent; otherwise, a data conversion error occurs.

Related Article

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.