I have a table with three fields, first_name, middle_name, Last_name. I'd like to create a query that will combine those three into one alias. I know I am just missing the operator but I've searched the web, usenet and here and can't find anything (Searching on 'AS' is a bit difficult)
This is what I've tried:
SELECT tblemp.First_Name + tblemp.Middle_Name + tblemp.Last_Name AS FullName
FROM tblemp
But that doesn't work, it returns 0. I also tried replacing the + with & or AND but those didn't work either.
thanks
-al
This is what I've tried:
SELECT tblemp.First_Name + tblemp.Middle_Name + tblemp.Last_Name AS FullName
FROM tblemp
But that doesn't work, it returns 0. I also tried replacing the + with & or AND but those didn't work either.
thanks
-al