Summary of the difference between using from and join to query two tables in MySQL

Summary of the difference between using from and join to query two tables in MySQL

Preface

In MySQL, multi-table join query is a very common requirement. When using multi-table query, you can use from multiple tables or use join to connect multiple tables.

What is the difference between these two queries? Which query is more efficient? With these questions, I decided to give it a try.

1. First create two tables one and two on the local MySQL

one table

CREATE TABLE `one` (
 `id` int(0) NOT NULL AUTO_INCREMENT,
 `one` varchar(100) NOT NULL,
 PRIMARY KEY (`id`)
)ENGINE = InnoDB CHARACTER SET = utf8;

Two table

CREATE TABLE `two` (
 `id` int(0) NOT NULL AUTO_INCREMENT,
 `two` varchar(100) NOT NULL,
 PRIMARY KEY (`id`)
)ENGINE = InnoDB CHARACTER SET = utf8;

First, insert a few pieces of data and check them out;

select one.id,one.one,two.id,two.two from one,two where one.id=two.id; 

select one.id,one.one,two.id,two.two from one join two on one.id=two.id; 

Comparing the two queries, there is almost no difference in query time. There is no difference when checking the SQL run analysis.

In order to highlight the performance difference between the two queries, insert 1 million records into table one and 100,000 records into table two. In the face of a large amount of data, the slightest difference will be infinitely magnified. Now let's compare the differences.

First use Python to insert data into the database. Why use Python? Because Python writes simple

On the code

import pymysql

db = pymysql.connect("127.0.0.1", 'root', "123456", "bruce")
cursor = db.cursor()

sql = "INSERT INTO one (one) values ​​(%s)"
for i in range(1000000):
 cursor.executemany(sql, ['one' + str(i)])
 if i % 10000 == 0:
 db.commit()
 print(str(i) + 'commit')
db.commit()

print('insert one ok')
sql2 = "INSERT INTO two (two) values ​​(%s)"
for i in range(100000):
 cursor.executemany(sql2, ['two' + str(i)])
 if i % 10000 == 0:
 db.commit()
 print(str(i) + 'commit')
db.commit()
print('insert two ok')

Be patient and wait for a while, the insertion will take some time;

After the data is inserted, let's query some

First use FROM two tables to query

select one.id,one.one,two.id,two.two from one,two where one.id=two.id; 

It takes about 20.49 seconds;

Let’s use JOIN query again

select one.id,one.one,two.id,two.two from one join two on one.id=two.id; 

It took 19.45 seconds. Among 100,000 data items, a 1-second error is not a big deal.

Take a look at the query when using id as a condition constraint

There is no difference in query time. Let's take a look at the SQL execution analysis.

The result is still the same

Summarize

In MySQL, using FROM to query multiple tables and using JOIN connection (except LEFT JOIN and RIGHT JOIN) have the same query results and query efficiency.

Well, the above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • MYSQL uses inner join to query/delete/modify examples
  • MySQL query optimization: Introduction to join query sort limit (join, order by, limit statement)
  • MySQL optimization: use join instead of subquery
  • Analysis of MySQL multiple left join query usage
  • Query process and optimization method of (JOIN/ORDER BY) statement in MySQL
  • Summary of various common join table query examples in MySQL
  • Detailed explanation of MySQL using profile to analyze slow SQL (group left join is more efficient than subquery)
  • Mysql join query principle knowledge points
  • MySQL joint table query basic operation left-join common pitfalls
  • MySQL efficient query left join and group by (plus index)

<<:  Detailed explanation of the interaction between React Native and IOS

>>:  Tutorial on building file sharing service Samba under CentOS6.5

Recommend

Vue implements the countdown component for second kills

This article shares the specific code of Vue to i...

Solve the problem of MySql8.0 checking transaction isolation level error

Table of contents MySql8.0 View transaction isola...

MySQL trigger syntax and application examples

This article uses examples to illustrate the synt...

Installation and configuration of MySQL 5.7.17 free installation version

MYSQL version: MySQL Community Server 5.7.17, ins...

How to prompt and open hyperlink a

<br />The countless information on the Inter...

Three ways to copy MySQL tables (summary)

Copy table structure and its data The following s...

Detailed explanation of how to easily switch CSS themes

I recently added a very simple color scheme (them...

Summary of MySQL data migration

Table of contents Preface: 1. About data migratio...

Application of Hadoop counters and data cleaning

Data cleaning (ETL) Before running the core busin...

Markup Language - Title

Click here to return to the 123WORDPRESS.COM HTML ...

Solution to Mysql binlog log file being too large

Table of contents 1. Related binlog configuration...

How to hide elements on the Web and their advantages and disadvantages

Example source code: https://codepen.io/shadeed/p...

Vue element implements table adding, deleting and modifying data

This article shares the specific code of vue elem...