MySQL NULL data conversion method (must read)

MySQL NULL data conversion method (must read)

When using MySQL to query the database and executing left join , some of the associated fields have NULL contents. Therefore, after obtaining the record set, the NULL data needs to be converted.

This article will provide a method to perform the conversion processing directly at query time. The acquired record set does not need to be converted again.

mysql provides the IFNULL function

IFNULL(expr1, expr2)

IFNULL() returns expr1 if expr1 is not NULL, otherwise it returns expr2

Examples:

User table structure and data

+----+-----------+
| id | name |
+----+-----------+
| 1 | Abby |
| 2 | Daisy |
| 3 | Christine |
+----+-----------+

user_lastlogin table structure and data

+-----+---------------+
| uid | lastlogintime |
+-----+---------------+
| 1 | 1488188120 |
| 3 | 1488188131 |
+-----+---------------+

Query the user's name and last login time

mysql> select a.id,a.name,b.lastlogintime from user as a left join user_lastlogin as b on a.id=b.uid;

+----+-----------+---------------+
| id | name | lastlogintime |
+----+-----------+---------------+
| 1 | Abby | 1488188120 |
| 2 | Daisy | NULL |
| 3 | Christine | 1488188131 |
+----+-----------+---------------+

Because the user with id=2 has never logged in, there is no record in the user_lastlogin table. Therefore lastlogintime is NULL.

Use IFNULL to convert NULL to 0

IFNULL(lastlogintime, 0)
mysql> select a.id,a.name,IFNULL(b.lastlogintime,0) as lastlogintime from user as a left join user_lastlogin as b on a.id=b.uid;
+----+-----------+---------------+
| id | name | lastlogintime |
+----+-----------+---------------+
| 1 | Abby | 1488188120 |
| 2 | Daisy | 0 |
| 3 | Christine | 1488188131 |
+----+-----------+---------------+

The above article on MySQL conversion of NULL data (must read) 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:
  • Detailed explanation of NULL values ​​in MySQL
  • Solution to the problem of null column in NOT IN filling pit in MySQL
  • MySQL NULL value processing example detailed explanation
  • MySQL series of experience summary and analysis tutorials on NUll values

<<:  Detailed explanation of Nginx access restriction configuration

>>:  How to query data within a certain period of time with Vue front-end and Django back-end

Recommend

How to encapsulate axios in Vue

Table of contents 1. Installation 1. Introduction...

Graphic tutorial on installing tomcat8 on centos7.X Linux system

1. Create the tomcat installation path mkdir /usr...

Linux yum package management method

Introduction yum (Yellow dog Updater, Modified) i...

W3C Tutorial (10): W3C XQuery Activities

XQuery is a language for extracting data from XML...

Universal solution for MySQL failure to start under Windows system

MySQL startup error Before installing MySQL on Wi...

React's method of realizing secondary linkage

This article shares the specific code of React to...

Analysis on the problem of data loss caused by forced refresh of vuex

vuex-persistedstate Core principle: store all vue...

Python Flask WeChat applet login process and login api implementation code

1. Let’s take a look at the effect first Data ret...

CSS3 realizes the graphic falling animation effect

See the effect first Implementation Code <div ...

Some lesser-known sorting methods in MySQL

Preface ORDER BY 字段名升序/降序, I believe that everyon...

What are the advantages of using B+Tree as an index in MySQL?

Table of contents Why do databases need indexes? ...

The implementation process of ECharts multi-chart linkage function

When there is a lot of data to be displayed, the ...

How to use indexes to optimize MySQL ORDER BY statements

Create table & create index create table tbl1...