MS Access Concat with &
THE WORLD'S LARGEST WEB DEVELOPER SITE

MS Access Concat With &

❮ MS Access Functions

Example

Concatenate three columns into one "Address" column:

SELECT Address & ", " & PostalCode & ", " & City AS Address
FROM Customers;
Try it Yourself »

Definition and Usage

In MS Access, it is possible to concatenate multiple strings together (into a single string), with the & operator.

Syntax

string1 & string2 & string3

Parameter Values

None.

Technical Details

Works in: Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

❮ MS Access Functions