Loading lesson path
Concept visual
Start at both ends
Add 3 columns together into one "Address" column:
SELECT Address & ", " & PostalCode & ", " & City AS Address
FROM Customers;The & operator allows you to add two or more strings together.
& string2 & string_n
Description string1, string2, string_n Required. The strings to add together
❮ MS Access Functions