MySql COALESCE function usage code example

MySql COALESCE function usage code example

COALESCE is a function that refers to each parameter expression in turn (expression_1, expression_2, ..., expression_n), stops when a non-null value is encountered, and returns the value. If all expressions are null, a null value will be returned. The reason for using COALESCE is that most expressions containing NULL values ​​will eventually return NULL.

Application examples:

SELECT COALESCE (1, 2, 3, 4) as number

SELECT COALESCE (NULL, 2, 3, 4) as number

SELECT COALESCE (NULL, NULL, 3, 4) as number

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of knowledge points related to null (IFNULL, COALESCE and NULLIF) in MySQL
  • Summary of coalesce() usage tips in MySQL
  • Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL
  • SQL Server COALESCE Function Detailed Explanation and Examples
  • A brief analysis of the performance comparison between the paging modes ISNULL and COALESCE in SQL Server
  • MySQL time difference functions (TIMESTAMPDIFF, DATEDIFF), date conversion calculation functions (date_add, day, date_format, str_to_date)
  • MySQL uses custom functions to recursively query parent ID or child ID
  • Detailed explanation of the correct use of the if function in MySQL

<<:  Simple use of Vue bus

>>:  Solve the problem of black screen when starting VMware virtual machine

Recommend

A detailed guide to custom directives in Vue

Table of contents 1. What is a custom instruction...

Vue uses drag and drop to create a structure tree

This article example shares the specific code of ...

JS canvas realizes the functions of drawing board and signature board

This article shares the specific code of JS canva...

js realizes the function of clicking to switch cards

This article example shares the specific code of ...

How to install docker under centos and remotely publish docker in springboot

Table of contents 1. Installation of JDK1.8 under...

About Zabbix custom monitoring items and triggers

Table of contents 1. Monitoring port Relationship...

UDP simple server client code example

I won’t go into details about the theory of UDP. ...

Several methods of implementing carousel images in JS

Carousel The main idea is: In the large container...

Building a KVM virtualization platform on CentOS7 (three ways)

KVM stands for Kernel-based Virtual Machine, whic...

About Docker security Docker-TLS encrypted communication issues

Table of contents 1. Security issues with Docker ...

Linux Dig command usage

Dig Introduction: Dig is a tool that queries DNS ...

Use of Linux file command

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