MySQL process control IF(), IFNULL(), NULLIF(), ISNULL() functions

MySQL process control IF(), IFNULL(), NULLIF(), ISNULL() functions

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 expr1 is true, and returns the value of expr3 if 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.

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

3. Use of NULLIF() function

NULLIF(expr1,expr2) , if expr1=expr2, then 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

The above is the introduction of the use of MySQL process control IF(), IFNULL(), NULLIF(), and ISNULL() functions. I hope it will be helpful to you. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • This article takes you to explore NULL in MySQL
  • MySQL series of experience summary and analysis tutorials on NUll values
  • mysql IS NULL using index case explanation
  • MySql sharing of null function usage
  • Storing NULL values ​​on disk in MySQL

<<:  Introduction to scheduled tasks in Linux system

>>:  7 Ways to Write a Vue v-for Loop

Recommend

Native JS to achieve sliding button effect

The specific code of the sliding button made with...

Implementation of debugging code through nginx reverse proxy

background Now the company's projects are dev...

How to monitor and delete timed out sessions in Tomcat

Preface I accidentally discovered that the half-h...

How to install Nginx in CentOS

Official documentation: https://nginx.org/en/linu...

How to write the parent and child directories of HTML relative paths

How to indicate the parent directory ../ represent...

Use of Linux stat command

1. Command Introduction The stat command is used ...

CentOS 7.5 deploys Varnish cache server function

1. Introduction to Varnish Varnish is a high-perf...

How to reasonably use the redundant fields of the database

privot is the intermediate table of many-to-many ...

MySQL 5.7.17 compressed package installation-free configuration process diagram

There are two versions of MySQL database manageme...

Nginx stream configuration proxy (Nginx TCP/UDP load balancing)

Prelude We all know that nginx is an excellent re...

Does MySql need to commit?

Whether MySQL needs to commit when performing ope...