Solutions to invalid is Null segment judgment and IFNULL() failure in MySql

Solutions to invalid is Null segment judgment and IFNULL() failure in MySql

MySql Null field judgment and IFNULL failure processing

ps: (If you don't want to see the process, just add a select outside your sql)

select a,b,c from table group by a,b,c //At this time, if a,b,c is judged to be null, it does not matter. select IFNULL(a,0),IFNULL(b,0),IFNULL(3,0) 
from (select a,b,c from table group by a,b,c ) //That's it

Let's take a look at this very simple table.

insert image description here

When I use SQL statements to group by PID and convert columns to rows, the results are displayed like this

insert image description here

No matter how I display IFNULL(SID1,0) or IF( SID1 is null,0,SID1), the result is still NULL -.-! I feel helpless.

My SQL is written like this. If you have not used the MAX function, you can ignore it and just look at IFNULL. It is obvious that I added IFNULL.

SELECT
			PID,
			MAX(CASE WHEN SID = 1 THEN IFNULL(PNUM ,0) END) AS SID1,
			MAX(CASE WHEN SID = 2 THEN IFNULL(PNUM ,0) END) AS SID2,
			MAX(CASE WHEN SID = 3 THEN IFNULL(PNUM ,0) END) AS SID3
		FROM
			(
				SELECT
					PID,
					SUM(PNUM) PNUM,
					SID
				FROM
					A
				GROUP BY
					PID
			) temp
		GROUP BY
			temp.PID

But I found that the result is still NULL, and then I found that IFNULL(), is null can only determine that the corresponding field exists in the table and is NULL, but there is obviously no such field in my table, so it cannot be determined!

After you select, the NULL value in the query is not recognized by mysql's is null and IFNULL()

Having said so much, how should we solve it?

It’s very simple, if you don’t have a watch, just get one! (Create a new Table?) What are you thinking about!

First, remove the IFNULL in the query. It has no effect.

Then use a select statement to query the result set as a table. This is equivalent to the field existing in the table you are querying and the value is NULL.

SELECT
	PID,IFNULL(SID1,0) SID1,IFNULL(SID2,0) SID2,IFNULL(SID3,0) SID3
FROM
	(
		SELECT
			PID,
			MAX(CASE WHEN SID = 1 THEN PNUM END) AS SID1,
			MAX(CASE WHEN SID = 2 THEN PNUM END) AS SID2,
			MAX(CASE WHEN SID = 3 THEN PNUM END) AS SID3
		FROM
			(
				SELECT
					PID,
					SUM(PNUM) PNUM,
					SID
				FROM
					A
				GROUP BY
					PID
			) temp
		GROUP BY
			temp.PID
	) temp1

See, the result is out hahahaha~

insert image description here

Problems encountered when using IFNULL() in MySql

About ifnull() Function

IFNULL(a,b) c

If a is not null, then the value of c is a

If a is null, then the value of c is b

Problems encountered in actual use

IFNULL(a,b) c

If a is not null but is ' ' an empty string, then the value of c is a empty string.

The actual desired result is that a is an empty string or null, and the value of c is b.

Solution

Use the if() function instead

if(a ='' or a is null,b,a) c

This means: if a is null or an empty string, c=b; otherwise c=a;

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to MySQL IFNULL judgment problem
  • Summary of knowledge points related to null (IFNULL, COALESCE and NULLIF) in MySQL
  • Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL
  • A brief discussion on ifnull() function similar to nvl() function in MySQL
  • Detailed explanation of IFNULL, NULLIF and ISNULL usage in MySql
  • A brief discussion on the usage of SQL Server's ISNULL function and MySQL's IFNULL function
  • Introduction to the difference between IFNULL, IF, and CASE in MySQL
  • Instructions for nested use of MySQL ifnull

<<:  Several reasons for not compressing HTML

>>:  How to build SFTP server and image server on Linux cloud server

Blog    

Recommend

Common Linux English Error Chinese Translation (Newbies Must Know)

1.command not found command not found 2. No such ...

Installation method of MySQL 5.7.18 decompressed version under Win7x64

Related reading: Solve the problem that the servi...

How to set up a deployment project under Linux system

1. Modify the firewall settings and open the corr...

Docker uses dockerfile to start node.js application

Writing a Dockerfile Taking the directory automat...

The latest Linux installation process of tomcat8

Download https://tomcat.apache.org/download-80.cg...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

Some conclusions on developing mobile websites

The mobile version of the website should at least...

Docker build PHP environment tutorial detailed explanation

Docker installation Use the official installation...

Several ways to encapsulate axios in Vue

Table of contents Basic Edition Step 1: Configure...

How to implement a single file component in JS

Table of contents Overview Single file components...

Future-oriented all-round web design: progressive enhancement

<br />Original: Understanding Progressive En...

Install Docker on Linux (very simple installation method)

I have been quite free recently. I have been doin...

Introduction to fork in multithreading under Linux

Table of contents Question: Case (1) fork before ...

Tutorial on installing mongodb under linux

MongoDB is cross-platform and can be installed on...