MySQL CONCAT () Fungsi
Contoh
Tambahkan beberapa string bersama:
SELECT CONCAT("SQL ", "Tutorial ", "is ", "fun!") AS ConcatenatedString;
Definisi dan Penggunaan
Fungsi CONCAT() menambahkan dua atau lebih ekspresi bersama-sama.
Catatan: Lihat juga fungsi CONCAT_WS() .
Sintaksis
CONCAT(expression1, expression2, expression3,...)
Nilai Parameter
Parameter | Description |
---|---|
expression1, expression2, expression3, etc. |
Required. The expressions to add together.
Note: If any of the expressions is a NULL value, it returns NULL |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Tambahkan tiga kolom ke dalam satu kolom "Alamat":
SELECT CONCAT(Address, " ", PostalCode, " ", City) AS Address
FROM
Customers;