How to convert null data in mysql
Jan 27, 2021 am 10:18 AMMysql 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)].
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)
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 | +----+-----------+
user_lastlogin table structure and data
+-----+---------------+ | uid | lastlogintime | +-----+---------------+ | 1 | 1488188120 | | 3 | 1488188131 | +-----+---------------+
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 | +----+-----------+---------------+
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)
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!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP?

What are the application scenarios of Java enumeration types in databases?

How to insert data into a MySQL table using PHP?

How to fix mysql_native_password not loaded errors on MySQL 8.4

How to use MySQL stored procedures in PHP?

Performance optimization strategies for PHP array paging
