ฟังก์ชันMySQL CONCAT_WS()
ตัวอย่าง
เพิ่มนิพจน์หลายนิพจน์เข้าด้วยกัน และเพิ่มตัวคั่น "-" ระหว่างนิพจน์:
SELECT CONCAT_WS("-", "SQL", "Tutorial", "is", "fun!") AS ConcatenatedString;
ความหมายและการใช้งาน
ฟังก์ชัน CONCAT_WS() เพิ่มนิพจน์ตั้งแต่สองนิพจน์ขึ้นไปพร้อมกับตัวคั่น
หมายเหตุ:ดูฟังก์ชันCONCAT() ด้วย
ไวยากรณ์
CONCAT_WS(separator, expression1, expression2, expression3,...)
ค่าพารามิเตอร์
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 |
รายละเอียดทางเทคนิค
ทำงานใน: | จาก MySQL 4.0 |
---|
ตัวอย่างเพิ่มเติม
ตัวอย่าง
เพิ่มสามคอลัมน์ (และเพิ่มช่องว่างระหว่างพวกเขา) ลงในหนึ่งคอลัมน์ "ที่อยู่":
SELECT CONCAT_WS(" ", Address, PostalCode, City) AS Address
FROM
Customers;