CONCAT_WS

Sintassie

CONCAT_WS(separatore, str1, str2,...)

Spiegazione

CONCAT_WS() sta per Concatenate With Separator (concatenazione con separatore) ed è una forma alternativa di CONCAT(). Il primo argomento è il separatore che divide il resto degli argomenti. Il separatore viene aggiunto tra le stringhe che vengono concatenate. Può essere una stringa, come gli altri argomenti. Se invece è NULL, viene restituito NULL.

Esempi

MariaDB [(none)]> 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.00 sec)

MariaDB [(none)]> SELECT CONCAT_WS(',','First name',NULL,'Last Name');
+----------------------------------------------+
| CONCAT_WS(',','First name',NULL,'Last Name') |
+----------------------------------------------+
| First name,Last Name                         |
+----------------------------------------------+
1 row in set (0.00 sec)

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.