string concatenation in query result

  • Thread starter Thread starter semkaa
  • Start date Start date
S

semkaa

Hello!
I have one little question.
Can you tell me how to concatenate 2 strings in query result?
If it is MSSQLServer, select will look like this:
select SUP_SURNAME + SUP_NAME FROM SUPERVISOR

But it doesn't work in ACCESS. In ACCESS, as a result, I have only
SUP_SURNAME column values.

Thanx.
 
SELECT [Sup_SurName] & " " & [Sup_Name] As CombinedName
FROM [Supervisor]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top