Okay, I'm wracking my brain here and can't find the answer to this one...
I have a table (lets call it tbl_names) with 5 fields (for this lets just use 2 and call them FirstName and LastName) that I need to join together to make one field (lets call it Name).
Now I've created a query that goes as follows:
SELECT FirstName & LastName AS comprehensive FROM tbl_names
Unfortunately, it's not joining the fields together. Perhaps I need to use an AS statement or something?
Anyone have any ideas? H E L P . . .
I have a table (lets call it tbl_names) with 5 fields (for this lets just use 2 and call them FirstName and LastName) that I need to join together to make one field (lets call it Name).
Now I've created a query that goes as follows:
SELECT FirstName & LastName AS comprehensive FROM tbl_names
Unfortunately, it's not joining the fields together. Perhaps I need to use an AS statement or something?
Anyone have any ideas? H E L P . . .