Instructions for nested use of MySQL ifnull

Instructions for nested use of MySQL ifnull

Nested use of MySQL ifnull

I searched online to see if there is a way to nest ifnull, but it seems that no one has mentioned this usage: most of them simply check whether a field is empty and then replace it with another value;

That is:

select ifnull(a,b) from A ;

But the problem I encountered is that there are two fields, and the scenario is probably like this:

Each store has two discount methods, vip_discount and simple_discount, which are named after the discount field found in the database; vip_discount is the main one.

This means that if vip_discount is not empty, its value will be returned. If its value is empty, it is necessary to further determine whether the simple_discount field is empty. If it is not empty, the value of simple_discount will be returned, otherwise an empty string will be returned.

Here I thought about whether I could use nested ifnull to determine whether I could achieve my goal.

After searching the Internet for a long time and not finding any similar blogs, I thought I could try it myself:

select ifnull(vip_discount,ifnull(simple_discount,"")) as discount from A;

This solves the problem. This SQL statement can also be followed by conditional statements to supplement other conditional queries.

The pitfalls of MYSQL ifnull

Without further ado, let's look at the SQL:

UPDATE
    lb_user u
SET u.user_level = (
    SELECT
        IFNULL(levelid, u.user_level)
    FROM lb_user_level
    WHERE `status` = 1 AND levelid > u.user_level
    AND (upgrade_score < u.empirical OR upgrade_total_money < u.total_consumption_money)
    ORDER BY levelid DESC
    LIMIT 1
);

At first glance, this SQL statement seems to be fine and is executed successfully. However, it fails when executed again. The reason is that the data cannot be retrieved according to the current conditions and the returned data is empty. Note that the data is empty, meaning there is no data, not that the data exists but the field is empty. After investigation, the SQL statement is modified as follows:

UPDATE
    lb_user u
SET u.user_level = IFNULL((
    SELECT
        levelid
    FROM lb_user_level
    WHERE `status` = 1 AND levelid > u.user_level
    AND (upgrade_score < u.empirical OR upgrade_total_money < u.total_consumption_money)
    ORDER BY levelid DESC
    LIMIT 1
), u.user_level);

After the modification, the execution is successful, and there is no IFNULL failure;

To summarize the reasons are:

In MYSQL, IFNULL can only determine if the data exists and is NULL, but cannot determine if the data is not found and is NULL.

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:
  • Solutions to invalid is Null segment judgment and IFNULL() failure in MySql
  • 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

<<:  Several skills you must know when making web pages

>>:  HTML displays ellipsis beyond the text... implemented through text-overflow

Recommend

Build a Scala environment under Linux and write a simple Scala program

It is very simple to install Scala environment in...

CentOS7 deploys version 19 of docker (simple, you can follow it)

1. Install dependency packages [root@localhost ~]...

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...

JS implements WeChat's "shit bombing" function

Hello everyone, I am Qiufeng. Recently, WeChat ha...

uniapp dynamic modification of element node style detailed explanation

Table of contents 1. Modify by binding the style ...

A brief talk on responsive design

1. What is responsive design? Responsive design i...

Good website copywriting and good user experience

Looking at a website is actually like evaluating a...

Why the explain command may modify MySQL data

If someone asked you whether running EXPLAIN on a...

React Router 5.1.0 uses useHistory to implement page jump navigation

Table of contents 1. Use the withRouter component...

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I ha...

Detailed tutorial on integrating Apache Tomcat with IDEA editor

1. Download the tomcat compressed package from th...

Detailed explanation of MySQL user rights management

Table of contents Preface: 1. Introduction to Use...

Overview of time configuration under Linux system

1. Time types are divided into: 1. Network time (...

Mysql some complex sql statements (query and delete duplicate rows)

1. Find duplicate rows SELECT * FROM blog_user_re...