MySQL CONCAT_WS() İşlevi
Örnek
Birkaç ifadeyi birbirine ekleyin ve aralarına bir "-" ayırıcı ekleyin:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
Tanım ve Kullanım
CONCAT_WS() işlevi, bir ayırıcıyla birlikte iki veya daha fazla ifade ekler.
Not: CONCAT() işlevine de bakın .
Sözdizimi
CONCAT_WS(separator, expression1, expression2, expression3,...)
Parametre Değerleri
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 |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
Bir "Adres" sütununa üç sütun ekleyin (ve aralarına bir boşluk ekleyin):
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;