Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL

Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL

The isnull() function cannot be used as a substitute for null values ​​in MySQL!

as follows:

First, there is a table named business:

SELECT ISNULL(business_name,'no business_name') AS bus_isnull FROM business WHERE id=2

Running it directly will give an error:

Error code: 1582

Incorrect parameter count in the call to native function 'isnull'

Therefore, the isnull() function does not work in MySQL. You can use ifnull() and coalesce() instead. as follows:

Use ifnull() function:

SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=2

Running results:


When the queried value is not null:

SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=1

The results are as follows:


Use coalesce() function:

SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=2

The results are as follows:


When the query value is not null:

SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=1 

Among them: coalesce() can also return the first non-null value. as follows:

SELECT COALESCE(business_name,district_id,id) AS bus_coalesce FROM business WHERE id=2 

So, how to use isnull() in MySQL? The answer is used after where. as follows:

SELECT * FROM business WHERE ISNULL(business_name)

The results are as follows:


Similarly, is null and is not null are also used after where.

SELECT * FROM business WHERE business_name IS NULL

The results are as follows:

SELECT * FROM business WHERE business_name IS NOT NULL 

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 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
  • 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

<<:  How to use file writing to debug a Linux application

>>:  Complete code for implementing the popular astronaut watch face based on JavaScript

Recommend

How to choose between MySQL CHAR and VARCHAR

Table of contents VARCHAR and CHAR Types Conclusi...

Detailed explanation of JavaScript function introduction

Table of contents Function Introduction function ...

Using front-end HTML+CSS+JS to develop a simple TODOLIST function (notepad)

Table of contents 1. Brief Introduction 2. Run sc...

Introduction to html form control disabled attributes readonly VS disabled

There are two ways to disable form submission in ...

Vue elementUI implements tree structure table and lazy loading

Table of contents 1. Achieve results 2. Backend i...

Native js to implement form validation function

Table of contents When developing, analyzing the ...

Advantages of MySQL covering indexes

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

Things to note when designing web pages for small-screen mobile devices

The reason is that this type of web page originate...

Explaining immutable values ​​in React

Table of contents What are immutable values? Why ...

How to add indexes to MySQL

Here is a brief introduction to indexes: The purp...

JavaScript BOM Explained

Table of contents 1. BOM Introduction 1. JavaScri...

MySQL InnoDB MRR Optimization Guide

Preface MRR is the abbreviation of Multi-Range Re...

Implementation of Docker data volume operations

Getting Started with Data Volumes In the previous...

In-depth understanding of the use of CSS clear:both

clear:both is used to清除浮動This is the impression I...