CONCAT_WS(separator,str1,str2,...)
|
The first argument is the separator for the rest of the arguments. |
If the separator is NULL, the result is NULL. |
CONCAT_WS() does not skip empty strings. |
CONCAT_WS() does skip any NULL values after the separator argument. |
mysql> mysql> mysql> SELECT CONCAT_WS(',','First name','Second name','Last Name'); +-------------------------------------------------------+ | CONCAT_WS(',','First name','Second name','Last Name') | +-------------------------------------------------------+ | First name,Second name,Last Name | +-------------------------------------------------------+ 1 row in set (0.02 sec)
mysql>
|
|
|
Related Scripts with Example Source Code in same category :
-
-
|
|