MySQL CONCAT_WS() Funksie
Voorbeeld
Voeg verskeie uitdrukkings bymekaar en voeg 'n "-" skeiding tussen hulle:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
Definisie en gebruik
Die CONCAT_WS() funksie voeg twee of meer uitdrukkings saam met 'n skeier by.
Let wel: Kyk ook na die CONCAT() funksie.
Sintaksis
CONCAT_WS(separator, expression1, expression2, expression3,...)
Parameterwaardes
Parameter | Description |
---|---|
separator | Required. The separator to add between each of the expressions. If separator is NULL, this function returns NULL |
expression1, expression2, expression3, etc. |
Required. The expressions to add together. An expression with a NULL value will be skipped |
Tegniese besonderhede
Werk in: | Van MySQL 4.0 |
---|
Meer voorbeelde
Voorbeeld
Voeg drie kolomme (en voeg 'n spasie tussen hulle) by in een "Adres"-kolom:
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;