Treason
#@$%#!
- Local time
- Today, 13:38
- Joined
- Mar 12, 2002
- Messages
- 340
ok, this has stumped me for a while and I would love to overcome this..
I have 2 tables, one with employee ID's and other employee information, and another with Employee ID's and jobs. The Employee ID's from each table are joined in a One-To-Many relationship.
here's the example
Table1
[Emp_ID] [Emp_Name] [Address]
12345 John Doe 123 Mainst
43212 Jane Doe etc...
Table2
[Emp_ID] [Job]
12345 job12
12345 job34
12345 job42
43212 job01
43212 job93
Is there a way to create a query that will put the Emp_ID in one field and every Job that employee had in the next field without a delimiter. for example
Table3
[Emp_ID] [AllJobs]
12345 job12job34job42
43212 job01job93
I hope my question is clear, and I hope this is possible to create... any help is as always greatly appreciated.
I have 2 tables, one with employee ID's and other employee information, and another with Employee ID's and jobs. The Employee ID's from each table are joined in a One-To-Many relationship.
here's the example
Table1
[Emp_ID] [Emp_Name] [Address]
12345 John Doe 123 Mainst
43212 Jane Doe etc...
Table2
[Emp_ID] [Job]
12345 job12
12345 job34
12345 job42
43212 job01
43212 job93
Is there a way to create a query that will put the Emp_ID in one field and every Job that employee had in the next field without a delimiter. for example
Table3
[Emp_ID] [AllJobs]
12345 job12job34job42
43212 job01job93
I hope my question is clear, and I hope this is possible to create... any help is as always greatly appreciated.