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

Example

Combine two strings:

SELECT CONCAT(‘W3Schools’‘.com’);

Definition and Usage

The CONCAT() function joins two or more strings together.

Note: See also string concatenation with the + operator and CONCAT_WS().

Syntax

CONCAT(string1string2….string_n)

Parameter Values

Parameter

Description

String1, string2 string_n

Mandatory. Specifies the strings to be concatenated.

Technical Details

Works in:

SQL Server (from 2012 onward), Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse

More Examples

Example

Combine three strings:

SELECT CONCAT(‘SQL’‘ is’‘ fun!’);

Example

SELECT CONCAT(‘SQL’‘ ‘‘is’‘ ‘‘fun!’);