How to use not in to optimize MySql

How to use not in to optimize MySql

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:
  • MYSQL IN and EXISTS optimization examples
  • Optimization of not in and minus in MySQL
  • Detailed Analysis of or, in, union and Index Optimization in MySQL
  • Implementation of MySQL select in subquery optimization
  • Optimized record of using IN data volume in Mysql

<<:  A practical record of troubleshooting a surge in Redis connections in Docker

>>:  Detailed tutorial on installing Python 3 virtual environment in Ubuntu 20.04

Recommend

Detailed installation instructions for the cloud server pagoda panel

Table of contents 0x01. Install the Pagoda Panel ...

Two ways to open and close the mysql service

Method 1: Use cmd command First, open our DOS win...

How to build svn server in linux

1: Install SVN yum install -y subversion 2. Creat...

JS Canvas interface and animation effects

Table of contents Overview Canvas API: Drawing Gr...

Vue uses better-scroll to achieve horizontal scrolling method example

1. Implementation principle of scrolling The scro...

Implementing carousel effects with JavaScript

This article shares the specific code for JavaScr...

Solution to the problem of invalid line-height setting in CSS

About the invalid line-height setting in CSS Let&...

MySQL multi-instance configuration application scenario

Table of contents MySQL multiple instances Multi-...