Home > Database > Mysql Tutorial > body text

How to convert null data in mysql

coldplay.xixi
Release: 2022-12-30 11:12:43
Original
3682 people have browsed it

Mysql method of converting null data: use the IFNULL function. If expr1 is not NULL, [IFNULL()] returns expr1, otherwise it returns expr2, and the code is [IFNULL(expr1, expr2)].

How to convert null data in mysql

The operating environment of this tutorial: Windows 7 system, mysql version 8.0.22, DELL G3 computer. This method is suitable for all brands of computers.

Related learning recommendations: mysql database

mysql method of converting null data:

Mysql provides the IFNULL function

IFNULL(expr1, expr2)
Copy after login

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

Example:

user table structure and data

+----+-----------+
| id | name      |
+----+-----------+
|  1 | Abby      |
|  2 | Daisy     |
|  3 | Christine |
+----+-----------+
Copy after login

user_lastlogin table structure and data

+-----+---------------+
| uid | lastlogintime |
+-----+---------------+
|   1 |    1488188120 |
|   3 |    1488188131 |
+-----+---------------+
Copy after login

Query user’s name and lastlogintime

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 |
+----+-----------+---------------+
Copy after login

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

Use IFNULL to convert NULL to 0

IFNULL(lastlogintime, 0)
Copy after login
rrree

The above is the detailed content of How to convert null data in mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!