congegate multiple values to one record in query

E

ElocinSnave

Hello,

I am trying to have a query give me a congegation of multiple results in one
record.

Example:

With this query:

SELECT Employees.EmployeeID, ProfDesEmployee_Table.ProDesignation
FROM Employees INNER JOIN ProfDesEmployee_Table ON Employees.EmployeeID =
ProfDesEmployee_Table.EmployeeID;

I get:

EmployeeID ProDesignation
1 CFFA
2 CFFA
2 CPA
3 CISA
3 CISSP
5 CPA
6 CPA
7 CPA
7 JD

What I want to see is:

EmployeeID ProDesignation
1 CFFA
2 CFFA, CPA
3 CISA, CISSP
5 CPA
6 CPA
7 CPA, JD


Any help is appreciated!!!

Nicole
 

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