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 With &

Example

Concatenate three columns into a single column named “Address”.

SELECT Address & “, “ & PostalCode & “, “ & City AS Address
FROM Customers;

Definition and Usage

The & operator concatenates two or more strings together.

Syntax

string1 & string2 & string_n

Parameter Values

Parameter

Description

String1, string2, string_2

Mandatory. The strings that are to be concatenated together.

Technical Details

Works in:

 From Access 2000