Solve the problem of not finding NULL from set operation to mysql not like

Solve the problem of not finding NULL from set operation to mysql not like

An interesting discovery:

There is a table with a total of 1000 records. Now there is a query statement:

#Query statement 1
#Find the fields in the table whose id contains 'A' or 'B' or 'C' select * from table1 where id like '%A%' or id like '%B%' or id like '%C%';
#300 results were found successfully

Well, the query is normal, there are 300 records.

Then I typed the query again randomly...:

#Query statement 2
#Find the fields in the table whose id does not contain 'A', 'B', or 'C' select * from table1 where id not like '%A%' and id not like '%B%' and id not like '%C%';
#400 results were found successfully

Well, we found 400 items...what? ! Only 400? ? Shouldn’t there be 700? ! !

I was struck by lightning - what was wrong? ?

Logically, "find the fields in the table whose id contains 'A' or 'B' or 'C'" should be equivalent to "find the fields in the table whose id does not contain 'A', 'B', or 'C'"! This is determined by set operations!

"Find the fields in the table that have 'A' or 'B' or 'C' in their id" >> think of it as >> A∪B∪C

"Find the fields in the table whose id does not contain 'A', 'B', or 'C'" >> think of it as >> ∁UA∩∁UB∩∁UC

However, according to the operation rules, we know that: ∁U(A∪B∪C) = ∁UA ∩ ∁UB ∩ ∁UC

That is to say, shouldn't the results of the two query statements be complementary? ? Theoretically, the sum of the rows should be equal to 1000, so why are 300 missing now?

That's strange. What went wrong? ?

So change the query statement:

#Query statement 3
#Find the fields in the table whose id does not contain 'A' or 'B' or 'C' select * from table1 where id not in (select * from table1 where id like '%A%' or id like '%B%' or id like '%C%' );
#700 results were found successfully

Huh? ? How can we find the complementary set of query statement 1 in this way?

I compared the results of query statement 2 and query statement 3 and found that the 300 missing records were those where id was NULL!

In other words, not like '%A%' cannot find NULL records!

After understanding, we found that:

Found another detail knowledge~

Supplement: Note that when there is a null value in the not in query value of MySQL, the query result returned will always be empty

Now the database table is

When we use the following query:

select * from user
where username not in 
(
select username 
from user
where id != 2
)

At this time, the result of the subquery contains null values, so the result will always return an empty query instead of the expected row with id 2.

We can modify the query slightly:

select * from user
where username not in 
(
select username 
from user
where id != 2 and username is not null
)

At this time, by excluding the empty username column, you can get the expected result.

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Why should MySQL fields use NOT NULL?
  • Solve the problem of MySQL using not in to include null values
  • Detailed explanation of the difference between MySQL null and not null and null and empty value''''''''
  • Detailed explanation of the usage of NULL and NOT NULL when creating tables in MySQL
  • Solution to the problem of null column in NOT IN filling pit in MySQL
  • Should nullable fields in MySQL be set to NULL or NOT NULL?
  • MySQL query empty fields or non-empty fields (is null and not null)
  • mysql not in, left join, IS NULL, NOT EXISTS efficiency problem record
  • MySQL not null constraint case explanation

<<:  Docker installation and deployment of Net Core implementation process analysis

>>:  Implementation steps of vue-element-admin to build a backend management system

Recommend

CentOS7 configuration Alibaba Cloud yum source method code

Open the centos yum folder Enter the command cd /...

MySQL 5.7.18 winx64 installation and configuration method graphic tutorial

The installation of compressed packages has chang...

Should I use distinct or group by to remove duplicates in MySQL?

Preface About the performance comparison between ...

Let the web page redirect to other pages after opening for a few seconds

Just add the following code to achieve it. Method ...

Vue.set() and this.$set() usage and difference

When we use Vue for development, we may encounter...

SQL fuzzy query report: ORA-00909: invalid number of parameters solution

When using Oracle database for fuzzy query, The c...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

Reasons why MySQL 8.0 statistics are inaccurate

Preface Whether it is Oracle or MySQL, the new fe...

Summary of some common writing methods that cause MySQL index failure

Preface Recently, I have been busy dealing with s...

Display ellipsis effect when table cell content exceeds (implementation code)

illustrate In front-end development, you often en...

Complete steps to build NFS file sharing storage service in CentOS 7

Preface NFS (Network File System) means network f...

Detailed explanation of Docker Swarm service orchestration commands

1. Introduction Docker has an orchestration tool ...