MySQL 8.0.18 Hash Join does not support left/right join left and right join issues

MySQL 8.0.18 Hash Join does not support left/right join left and right join issues

In MySQL 8.0.18, a new Hash Join function was added, which is applicable to fields that are not indexed and can perform equal-value association queries. In previous versions, if the connected fields were not indexed, the query speed would be very slow and the optimizer would use the BNL (block nested) algorithm.

The Hash Join algorithm stores the data of a small table in a hash table in memory, matches the data in the large table row by row, calculates the hash value, and returns the qualified data from the memory to the client.

Use sysbench to generate four tables and delete the default k-field index.

We can use explain format=tree command to see that the hash join algorithm has been used.

However, the current version 8.0.18 only supports join. Left join and right join are invalid, please note this.

Summarize

The above is what I introduced to you about the MySQL 8.0.18 Hash Join not supporting left/right join. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • mysql join query (left join, right join, inner join)
  • SQL four types of joins - left outer join, right outer join, inner join, full join detailed explanation
  • MySQL table LEFT JOIN left join and RIGHT JOIN right join example tutorial
  • Examples of using MySQL left and right inner joins
  • In-depth understanding of the four types of SQL joins - left outer join, right outer join, inner join, full join
  • SQL left join and right join usage tips (left join and right join)
  • mysql left join, right join and inner join
  • How to write a SQL statement for a three-table left join query
  • SQL left join and right join principle and example analysis

<<:  How does WeChat Mini Program obtain user information and user phone number at the same time

>>:  Solution to ElementUI's this.$notify.close() call not working

Recommend

Solution to the MySQL error "Every derived table must have its own alias"

MySQL reports an error when executing multi-table...

Some parameter descriptions of text input boxes in web design

<br />In general guestbooks, forums and othe...

Build a high-availability MySQL cluster with dual VIP

Table of contents 1. Project Description: 2. Proj...

Vue achieves seamless carousel effect (marquee)

This article example shares the specific code of ...

What are the differences between xHTML and HTML tags?

All tags must be lowercase In XHTML, all tags must...

MySQL GROUP_CONCAT limitation solution

effect: The GROUP_CONCAT function can concatenate...

Use CSS to achieve circular wave effect

I often see some circular wave graphics on mobile...

CentOS 8 Installation Guide for Zabbix 4.4

Zabbix server environment platform ZABBIX version...

How to prevent hyperlink redirection using JavaScript (multiple ways of writing)

Through JavaScript, we can prevent hyperlinks fro...

Analyze Tomcat architecture principles to architecture design

Table of contents 1. Learning Objectives 1.1. Mas...

MySQL constraint types and examples

constraint Constraints ensure data integrity and ...

Detailed explanation of MySQL Group by optimization

Table of contents Standard execution process opti...

jQuery implements all shopping cart functions

Table of contents 1. Select All 2. Increase or de...