Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
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(separator, expression1, expression2, expression3,…)

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;