وظيفة 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;