Fungsi MySQL CONCAT_WS()
Contoh
Tambahkan beberapa ekspresi bersama-sama, dan tambahkan pemisah "-" di antara mereka:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
Definisi dan Penggunaan
Fungsi CONCAT_WS() menambahkan dua atau lebih ekspresi bersama dengan pemisah.
Catatan: Lihat juga fungsi CONCAT() .
Sintaksis
CONCAT_WS(separator, expression1, expression2, expression3,...)
Nilai Parameter
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 |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Tambahkan tiga kolom (dan tambahkan spasi di antaranya) ke dalam satu kolom "Alamat":
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;