How to combine 2 data columns?

G

Guest

Hello,

I have a table containing Employee ID, Last Name, and First Name columns. I
want to query the data so that I just get the last name and first name in a
single column. So if I have an employee with Last Name "Smith" and First
Name "John", I want "John Smith" returned from the query.

Can I do this with Access or SQL?
 
J

Jonathan Parminter

simsjr said:
-----Original Message-----
Hello,

I have a table containing Employee ID, Last Name, and First Name columns. I
want to query the data so that I just get the last name and first name in a
single column. So if I have an employee with Last Name "Smith" and First
Name "John", I want "John Smith" returned from the query.

Can I do this with Access or SQL?
.

Hi simsjr,

create a query with the table as its data source. In a
blank column field row type:
[first name] & " " & [last name]

Luck
Jonathan
 

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

Top