Solution to the problem of null column in NOT IN filling pit in MySQL

Solution to the problem of null column in NOT IN filling pit in MySQL

Some time ago, when I was working on a small function in the company, I counted how many data there were in a certain situation and then modified the problem. It seemed very simple at the time, so I wrote the following SQL:

SELECT COUNT(*) FROM t1 where tl.c1 not IN (SELECT t2.c1 FROM t2);

The expected result is: how many data are in t1 and not in t2? The result is: 0, that is, all the data in t1 are in t2. However, it is easy to find that some data is in t1 but not in t2, so it feels very strange. This SQL seems to be fine. After some searching, it turns out that the c1 field of t2 contains a null value. Modifying it to the following two forms can get the expected result:

SELECT COUNT(*) FROM t1 LEFT JOIN t2 ON t1.c1 = t2.c1 WHERE t2.c1 IS NULL OR t2.c1 = '';

or

select COUNT(*) from t1 where t1.c1 not in (
select t2.c1 from t2 where t2.c1 is not null AND t2.c1 != ''
);

So it's all caused by null (I also added the empty string to avoid errors). The reason is that the implementation principle of not in is to compare each t1.c1 with each t2.c1 (the query results in the brackets) for inequality (!=).

foreach c1 in t2:
if t1.c1 != c1:
continue
else:
return false
return true

In SQL, any operation result of !=null is false, so if there is a null in t2, the query of not in will always return false, that is, the query result is empty.

Summarize

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. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of NULL values ​​in MySQL
  • MySQL NULL value processing example detailed explanation
  • MySQL NULL data conversion method (must read)
  • MySQL series of experience summary and analysis tutorials on NUll values

<<:  WeChat applet realizes the effect of swiping left to delete list items

>>:  Using MySQL database in docker to achieve LAN access

Recommend

Example analysis of the use of GROUP_CONCAT in MySQL

This article uses an example to describe how to u...

JSONP cross-domain simulation Baidu search

Table of contents 1. What is JSONP 2. JSONP cross...

How to enhance Linux and Unix server security

Network security is a very important topic, and t...

Share the problem of Ubuntu 19 not being able to install docker source

According to major websites and personal habits, ...

How to call the interrupted system in Linux

Preface Slow system calls refer to system calls t...

Mysql join query principle knowledge points

Mysql join query 1. Basic concepts Connect each r...

Example code for hiding element scrollbars using CSS

How can I hide the scrollbars while still being a...

Linux lossless expansion method

Overview The cloud platform customer's server...

Tutorial on installing the unpacked version of mysql5.7 on CentOS 7

1. Unzip the mysql compressed package to the /usr...

Installation process of CentOS8 Linux 8.0.1905 (illustration)

As of now, the latest version of CentOS is CentOS...

Solution to nginx-ingress-controller log persistence solution

Recently I saw an article on a public account tha...

About deploying a web project to Alibaba Cloud Server (5 steps to do it)

1. First log in to the Alibaba Cloud website to r...

How to open the port in Centos7

The default firewall of CentOS7 is not iptables, ...

How to display percentage and the first few percent in MySQL

Table of contents Require Implementation Code dat...

Detailed explanation of LVM seamless disk horizontal expansion based on Linux

environment name property CPU x5650 Memory 4G dis...