A brief discussion on whether MySQL can have a function similar to Oracle's nvl

A brief discussion on whether MySQL can have a function similar to Oracle's nvl

Use ifnull instead of isnull

isnull is used to determine whether it is null. The return value is 1 for null or 0 for not null.

ifnull is equivalent to Oracle's nvl, and is used as follows

mysql> select ifnull(1,10);
+--------------+
| ifnull(1,10) |
+--------------+
| 1 |
+--------------+
1 row in set (0.00 sec)

mysql> select ifnull(null,10);
+-----------------+
| ifnull(null,10) |
+-----------------+
| 10 |
+-----------------+
1 row in set (0.00 sec)


The usage of isnull is as follows

mysql> select isnull(null);
+--------------+
| isnull(null) |
+--------------+
| 1 |
+--------------+
1 row in set (0.00 sec)

mysql> select isnull(1);
+-----------+
| isnull(1) |
+-----------+
| 0 |
+-----------+
1 row in set (0.00 sec)

The above article briefly talks about whether MySQL can have functions similar to Oracle's NVL. This is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Introduction to the use of Oracle's nvl function
  • Detailed explanation of nvl() and nvl2() functions in Oracle

<<:  Linux system disk formatting and manually adding swap partition

>>:  How to create a project with WeChat Mini Program using typescript

Recommend

How to install ROS Noetic in Ubuntu 20.04

Disclaimer: Since the project requires the use of...

Detailed introduction to deploying k8s cluster on centos7 system

Table of contents 1 Version and planning 1.1 Vers...

Css3 realizes seamless scrolling and anti-shake

question The seamless scrolling of pictures and t...

Summary of the advantages of Vue3 vs. Vue2

Table of contents 1. Why do we need vue3? 2. Adva...

Example of configuring multiple SSL certificates for a single Nginx IP address

By default, Nginx supports only one SSL certifica...

Getting Started Tutorial on Animating SVG Path Strokes Using CSS3

Without relying on JavaScript, pure CSS is used t...

CSS3 realizes the glowing border effect

Operation effect: html <!-- This element is no...

How to deploy Go web applications using Docker

Table of contents Why do we need Docker? Docker d...

20 JavaScript tips to help you improve development efficiency

Table of contents 1. Declare and initialize array...

Implementation of react loop data (list)

First, let's simulate the data coming from th...

The implementation process of Linux process network traffic statistics

Preface Linux has corresponding open source tools...

Detailed explanation of how to copy and backup docker container data

Here we take the Jenkins container as an example ...

HTML special character conversion table

character Decimal Character Number Entity Name --...

Mysql database design three paradigm examples analysis

Three Paradigms 1NF: Fields are inseparable; 2NF:...