Funkcja MySQL CONCAT_WS()
Przykład
Dodaj kilka wyrażeń razem i dodaj między nimi separator „-”:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
Definicja i użycie
Funkcja CONCAT_WS() dodaje dwa lub więcej wyrażeń wraz z separatorem.
Uwaga: Spójrz także na funkcję CONCAT() .
Składnia
CONCAT_WS(separator, expression1, expression2, expression3,...)
Wartości parametrów
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 |
Szczegóły techniczne
Pracuje w: | Z MySQL 4.0 |
---|
Więcej przykładów
Przykład
Dodaj trzy kolumny (i spację między nimi) w jednej kolumnie „Adres”:
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;