bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Concat With &

Concept visual

MS Access Concat With &

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Add 3 columns together into one "Address" column:

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

Definition and Usage

The & operator allows you to add two or more strings together.

Syntax string1

& string2 & string_n

Parameter Values

Parameter

Description string1, string2, string_n Required. The strings to add together

Technical Details

Works in:

From Access 2000

Previous

❮ MS Access Functions

Next

Previous

MS Access C hr() Function

Next

MS Access CurDir() Function