Detailed explanation of the use of IF(), IFNULL(), NULLIF(), and ISNULL() functions in MySQL

Detailed explanation of the use of IF(), IFNULL(), NULLIF(), and ISNULL() functions in MySQL

In MySQL, you can use IF(), IFNULL(), NULLIF(), and ISNULL() functions to control the process.

1. Use of IF() function

IF(expr1, expr2, expr3) returns the value of expr2 if the value of expr1 is true, and returns the value of expr3 if the value of expr1 is false.

SELECT IF(TRUE,'A','B'); -- Output: A
SELECT IF(FALSE,'A','B'); -- Output: B

2. Use of IFNULL() function

IFNULL(expr1, expr2) returns the value of expr2 if the value of expr1 is null, and returns the value of expr1 if the value of expr1 is not null.

Example 1

      mysql> SELECT IFNULL(1,0);   
                            -> 1   
      mysql> SELECT IFNULL(NULL,10);   
                            -> 10   
      mysql> SELECT IFNULL(1/0,10);   
                            -> 10   
      mysql> SELECT IFNULL(1/0,'yes');   
                            -> 'yes'  

Example 2

SELECT IFNULL(NULL,'B'); -- Output: B
SELECT IFNULL('HELLO','B'); -- Output: HELLO

3. Use of NULLIF() function

NULLIF(expr1, expr2), if expr1=expr2, the return value is null, otherwise the return value is the value of expr1.

SELECT NULLIF('A','A'); -- Output: null
SELECT NULLIF('A','B'); -- Output: A

4. Use of ISNULL() function

ISNULL(expr) returns 1 if the value of expr is null, and returns 0 if the value of expr1 is not null.

SELECT ISNULL(NULL); -- Output: 1
SELECT ISNULL('HELLO'); -- Output: 0

This is the end of this article about the detailed usage of IF(), IFNULL(), NULLIF(), and ISNULL() functions in MySQL. For more information about IF(), IFNULL(), NULLIF(), and ISNULL() in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of IFNULL, NULLIF and ISNULL usage in MySql
  • MySQL process control IF(), IFNULL(), NULLIF(), ISNULL() functions

<<:  Detailed explanation of application scenarios of filters in Vue

>>:  Two ways to manage volumes in Docker

Recommend

Use button trigger events to achieve background color flashing effect

To achieve the background color flashing effect, j...

CSS3 mobile vw+rem method to achieve responsive layout without relying on JS

1. Introduction (1) Introduction to vw/vh Before ...

How to use axios to make network requests in React Native

In front-end development, there are many ways to ...

Implementation of IP address configuration in Centos7.5

1. Before configuring the IP address, first use i...

A brief understanding of MySQL storage field type query efficiency

The search performance from fastest to slowest is...

Nginx forwarding based on URL parameters

Use scenarios: The jump path needs to be dynamica...

HTML table markup tutorial (9): cell spacing attribute CELLSPACING

A certain distance can be set between cells in a ...

Vue+spring boot realizes the verification code function

This article example shares the specific code of ...

Advantages of MySQL covering indexes

A common suggestion is to create indexes for WHER...

In-depth analysis of Vue's responsive principle and bidirectional data

Understanding object.defineProperty to achieve re...

Sample code for converting video using ffmpeg command line

Before starting the main text of this article, yo...

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...

MySQL 5.7.27 installation and configuration method graphic tutorial

The installation tutorial of MySQL 5.7.27 is reco...