Curriculum
Course: MYSQL
Login

Curriculum

MYSQL

MySQL References

0/140
Text lesson

CONCAT_WS

Example

Combine multiple expressions, inserting a “-” separator between each of them.

SELECT CONCAT_WS(“-““SQL”“Tutorial”“is”“fun!”AS ConcatenatedString; 

Definition and Usage

The CONCAT_WS() function merges two or more expressions with a specified separator, and it’s worth considering the CONCAT() function as well.

Syntax

CONCAT_WS(separatorexpression1expression2expression3,…)

Parameter Values

Parameter

Description

separator

Necessary: The separator to be inserted between each expression. If the separator is NULL, the function returns NULL.

expression1,
expression2,
expression3,
etc.

Necessary: The expressions to be combined. Any expression with a NULL value will be excluded.

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Combine data from three columns into a single “Address” column, separated by spaces.

SELECT CONCAT_WS(” “, Address, PostalCode, City) AS Address
FROM Customers;