mysql query data from one table and insert it into another table implementation method

mysql query data from one table and insert it into another table implementation method

mysql query data from one table and insert it into another table implementation method

Whether in website development or application development, we often encounter situations where we need to import data from a table in MySQL or MS SQL Server into another table in batches, and sometimes we even need to specify the import fields.

This article will take MySQL database as an example to introduce how to import all the data of a table or the data of specified fields into the target table through the SQL command line. This method is also applicable to SQL Server database, that is, T-SQL.

Category 1: If the fields of the two tables (export table and 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 specified fields, you can use this method:

INSERT INTO target table (field 1, field 2, ...) SELECT field 1, field 2, ... FROM source table;

Please note that the fields in the above two tables must be consistent, otherwise data conversion errors will occur.

INSERT INTO TPersonnelChange(  
   UserId, 
   DepId, 
   SubDepId, 
   PostionType, 
   AuthorityId, 
   ChangeDateS, 
   InsertDate, 
   UpdateDate, 
   SakuseiSyaId 
 )SELECT 
   UserId, 
   DepId, 
   SubDepId, 
   PostionType, 
   AuthorityId, 
   DATE_FORMAT(EmployDate, '%Y%m%d'), 
   NOW(), 
   NOW(), 
   1 
FROM 
   TUserMst WHERE 
   `Status` = 0 
AND QuitFlg = 0 
AND UserId > 2 

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • What to do if you forget your Linux/Mac MySQL password
  • mysql5.7.18 decompressed version to start mysql service
  • Detailed installation and configuration of MySql on Mac
  • How to allow all hosts to access mysql
  • MySQL paging analysis principle and efficiency improvement
  • Detailed steps to connect to MySQL database in pycharm
  • Solve the problem of Access denied for user ''root''@''%'' to database ''xxx'' after creating a database in MySQL

<<:  jQuery implements a simple comment area

>>:  js to achieve simple magnifying glass effects

Recommend

MySQL multi-table query detailed explanation

Time always passes surprisingly fast without us n...

Universal solution for MySQL failure to start under Windows system

MySQL startup error Before installing MySQL on Wi...

On good design

<br />For every ten thousand people who answ...

Detailed explanation of the basic functions and usage of MySQL foreign keys

This article uses examples to illustrate the basi...

How to place large images in a small space on a web page

Original source: www.bamagazine.com There are nar...

Use thead, tfoot, and tbody to create a table

Some people use these three tags in a perverted wa...

Vue3 uses axios interceptor to print front-end logs

Table of contents 1. Introduction 2. Use axios in...

Introduction to Linux File Compression and Packaging

1. Introduction to compression and packaging Comm...

Detailed explanation of jQuery's copy object

<!DOCTYPE html> <html lang="en"...

Div nested html without iframe

Recently, when doing homework, I needed to nest a ...

How to use axios to make network requests in React Native

In front-end development, there are many ways to ...

Linux series of commonly used operation and maintenance commands (summary)

Table of contents 1. System monitoring 2. File Op...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

Detailed explanation of nginx reverse proxy webSocket configuration

Recently, I used the webSocket protocol when work...