congegate multiple values to one record in query

  • Thread starter Thread starter ElocinSnave
  • Start date Start date
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
 
Back
Top