Recently, when using select query in a project, I used not in to exclude the unused primary key ID. The SQL used at the beginning was as follows: select s.SORT_ID, s.SORT_NAME, s.SORT_STATUS, s.SORT_LOGO_URL, s.SORT_LOGO_URL_LIGHT from SYS_SORT_PROMOTE s WHERE s.SORT_NAME = 'Must-Listen Classics' AND s.SORT_ID NOT IN ("SORTID001") limit 1; When there is a lot of data in the table, the execution time of this SQL is long and the execution efficiency is low. I found information online that it can be optimized using left join. The optimized SQL is as follows: select s.SORT_ID, s.SORT_NAME, s.SORT_STATUS, s.SORT_LOGO_URL, s.SORT_LOGO_URL_LIGHT from SYS_SORT_PROMOTE s left join (select SORT_ID from SYS_SORT_PROMOTE where SORT_ID=#{sortId}) b on s.SORT_ID = b.SORT_ID WHERE b.SORT_ID IS NULL AND s.SORT_NAME = 'Must-Listen Classics' limit 1; In the above SORT_ID=#{sortId}, sortId passes in the ID value that needs to be excluded in the SORT_ID field. When performing a left outer join, the field to be filtered (SORT_ID) is used as the join condition. Finally, add b.SORT_ID IS NULL to the where condition to filter out the related data in the table. Write down the essay here to record the optimization process. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: A practical record of troubleshooting a surge in Redis connections in Docker
>>: Detailed tutorial on installing Python 3 virtual environment in Ubuntu 20.04
Table of contents 0x01. Install the Pagoda Panel ...
Method 1: Use cmd command First, open our DOS win...
1: Install SVN yum install -y subversion 2. Creat...
The main contents of this article are as follows:...
Table of contents Overview Canvas API: Drawing Gr...
1. Implementation principle of scrolling The scro...
Problem Reproduction Alibaba Cloud Server, using ...
Use the Linux utility certbot to generate https c...
Idea imports an existing web project and publishe...
This article shares the specific code for JavaScr...
About the invalid line-height setting in CSS Let&...
Table of contents MySQL multiple instances Multi-...
1 Problem Description This article sorts the esta...
1. Install JDK Check the computer's operating...
The mysql on a server in the computer room had be...