MySQL practical skills: analysis of methods to compare whether two tables have different data

MySQL practical skills: analysis of methods to compare whether two tables have different data

This article uses an example to describe how MySQL compares two tables to see if they have different data. Share with you for your reference, the details are as follows:

In data migration, we often need to compare two tables to identify records in one table that have no corresponding records in the other table.

For example, we have a new database with a different schema than the old one. Our task is to migrate all the data from the old database to the new database and verify that the data was migrated correctly. To check the data, we must compare two tables, one in the new database and one in the old database, and identify the records that do not match.

Assume there are two tables: t1 and t2. Use the following steps to compare the two tables and identify the unmatched records. The common idea is to check t1 first, then loop through the data result set and query the other table one by one. If the data can be found, it is correct. If not, the data is missing.

If this is true, then you are really too young and too simple. This time, let's introduce a simpler data comparison solution, which is to use union all to join two tables, and then use a temporary table or a derived table to compare the data. Let's take a look at the sql example of union all:

SELECT t1.pk, t1.c1
FROM t1
UNION ALL
SELECT t2.pk, t2.c1
FROM t2

After that, let's create two tables and insert some data. After that, we can test it. Let's look at creating the table first:

CREATE TABLE t1(
 id int auto_increment primary key,
  title varchar(255) 
);
CREATE TABLE t2(
 id int auto_increment primary key,
  title varchar(255),
  note varchar(255)
);

After that, insert data into t1:

INSERT INTO t1(title)
VALUES('row 1'),('row 2'),('row 3');

Let's insert data into t2:

INSERT INTO t2(title)
VALUES('row 1'),('row 2'),('row 3');

OK, let's use derived tables to compare data:

SELECT id,title
FROM (
  SELECT id, title FROM t1
  UNION ALL
  SELECT id,title FROM t2
) tbl
GROUP BY id, title
HAVING count(*) = 1
ORDER BY id;

Of course there is no return data after running, because there is no difference between them. Don't worry, let's insert another row of data into the t2 table:

INSERT INTO t2(title,note)
VALUES('new row 4','new');

After that, we compare the values ​​of the title column in the two tables again. Since the new row is an unmatched row, it will be returned. Let's take a look at the results:

mysql> SELECT id,title
FROM (
  SELECT id, title FROM t1
  UNION ALL
  SELECT id,title FROM t2
) tbl
GROUP BY id, title
HAVING count(*) = 1
ORDER BY id;
+----+-----------+
| id | title |
+----+-----------+
| 4 | new row 4 |
+----+-----------+
1 row in set

Okay, that’s all the tips for this time.

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL common functions summary", "MySQL log operation skills", "MySQL transaction operation skills summary", "MySQL stored procedure skills" and "MySQL database lock related skills summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Performance comparison test of MySQL's two table storage structures MyISAM and InnoDB
  • Import data from different tables in different databases in mysql
  • Find duplicate records in mysql table
  • How to delete table data in MySQL
  • How to quickly delete all tables in MySQL without deleting the database
  • How to query duplicate data in mysql table
  • How to get the field name and detailed information of MySQL table in PHP
  • Batch modification, clearing, copying and other update commands for MySQL data table field contents
  • How to quickly copy MySQL database tables
  • MySQL uses the select statement to query the data of the specified column (field) in the specified table
  • Add new fields (columns) to existing tables in the MYSQL database
  • SQL statement to query the disk space occupied by all databases and the size of all tables in a single database in MySQL

<<:  VScode Remote SSH remote editing and debugging code

>>:  JavaScript to achieve all or reverse selection function

Recommend

MySQL 8.0.15 installation and configuration method graphic tutorial

This article records the installation and configu...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Vue implements the right slide-out layer animation

This article example shares the specific code of ...

How does Zabbix monitor and obtain network device data through ssh?

Scenario simulation: The operation and maintenanc...

How to prevent website content from being included in search engines

Usually the goal of building a website is to have...

JavaScript implements a box that follows the mouse movement

This article shares the specific code of JavaScri...

Tutorial on how to deploy LNMP and enable HTTPS service

What is LNMP: Linux+Nginx+Mysql+(php-fpm,php-mysq...

A brief understanding of the difference between MySQL union all and union

Union is a union operation on the data, excluding...

Tutorial on installing nginx in Linux environment

Table of contents 1. Install the required environ...

MySQL statement arrangement and summary introduction

SQL (Structured Query Language) statement, that i...

CentOS installation mysql5.7 detailed tutorial

This article shares the detailed steps of install...

Detailed explanation of the basic use of react-navigation6.x routing library

Table of contents react-native project initializa...

Detailed steps for remote deployment of MySQL database on Linux

Linux remote deployment of MySQL database, for yo...