How to concatenate fields and separate them with spaces
To contact the author click here
This article is from the book "Access 2007 Pure SQL"
To download the sample database click here
Column concatenation with spaces
Put all customer address information in one field with spaces between values
Discussion:
In this example,
we just add spaces between the concatenated columns.
We use single quotes with a space between them to achieve this
output.
Code:
SELECT (address +' '+ city +' '+ state +' '+ zip) AS FullAddress
FROM Customers
Result: