Select*fromStudent_Name;+---------+-------+---------+|FName |Mname|Lname |+-- -------+-------+---------+|Rahu"> How can we overcome the property of CONCAT() function that it returns NULL if any one of the arguments is NULL, especially when we want to concatenate the values ​​in columns and any column's value is NULL?-Mysql Tutorial-php.cn

How can we overcome the property of CONCAT() function that it returns NULL if any one of the arguments is NULL, especially when we want to concatenate the values in columns and any column's value is NULL?

王林
Release: 2023-09-07 10:49:02
forward
1025 people have browsed it

我们如何克服 CONCAT() 函数的属性,即如果任何一个参数为 NULL,它就会返回 NULL,特别是当我们想要连接列中的值并且任何列的值都为 NULL 时?

The above properties are of little use, especially when we want to concatenate values in columns and the value of any column is NULL. To overcome this problem we can use IFNULL() function and CONCAT() function. To understand it, let's consider the example from the table "Student_name;" There is the following data in it -

mysql> Select * from Student_Name; +---------+-------+---------+ | FName | Mname | Lname | +---------+-------+---------+ | Rahul | NULL | Singh | | Gaurav | Kumar | NULL | | Harshit | NULL | Khurana | | Yash | Pal | Sharma | +---------+-------+---------+ 4 rows in set (0.00 sec)
Copy after login

Now, suppose if we want to concatenate the values of Fname, Mname and Lname columns, the output is as follows -

mysql> Select CONCAT(Fname,Mname,Lname)AS Name from Student_Name; +---------------+ | Name | +---------------+ | NULL | | NULL | | NULL | | YashPalSharma | +---------------+ 4 rows in set (0.00 sec)
Copy after login

However, we know that this is not a useful output, Because the property of the CONCAT() function is that if any parameter is NULL, it returns NULL. We can overcome this property with the help of IFNULL() function as shown in the following query -

mysql> Select CONCAT(IFNULL(Fname,''),IFNULL(Mname,''),IFNULL(Lname,''))AS Name from Student_Name; +----------------+ | Name | +----------------+ | RahulSingh | | GauravKumar | | HarshitKhurana | | YashPalSharma | +----------------+ 4 rows in set (0.06 sec)
Copy after login

The above is the detailed content of How can we overcome the property of CONCAT() function that it returns NULL if any one of the arguments is NULL, especially when we want to concatenate the values in columns and any column's value is NULL?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
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
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!