开发者

SQL CONCAT with an IF statement

开发者 https://www.devze.com 2023-02-10 07:59 出处:网络
I have this: SELECT CONCAT(forename,\' \',IFNULL(initials, \'\'),\' \',surname) AS name FROM users How do I change it so that if the initials field is nul开发者_运维问答l it also doesn\'t include t

I have this:

SELECT CONCAT(forename,' ',IFNULL(initials, ''),' ',surname) AS name FROM users

How do I change it so that if the initials field is nul开发者_运维问答l it also doesn't include the space after it?


SELECT CONCAT(forename,' ',IFNULL(CONCAT(initials,' '), ''),surname) AS name FROM users


Use SELECT CONCAT(forename, ' ', CASE WHEN initials IS NULL THEN '' ELSE initials || ' ' END, surname) ...


I would use CONCAT_WS. For example:

SELECT CONCAT_WS(' ', NULL, 'First', NULL, 'Last', NULL);

This will return the string "First Last" with no spaces anywhere other than one CONCAT_WS has put between the two strings that are not NULL.

The first argument of CONCAT_WS is the glue that appears between the non-NULL values.

In your case this would be:

SELECT CONCAT_WS(' ', forename, initials, surname) AS name FROM users;

From here:

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat-ws

Edit: This only works in MySQL.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号