I have 3 tables:
- tbl_Positions {containing information on a specific job role}
- tbl_Office {containg information on an office}
- tbl_StaffDetails {containing information of all staff in the company, inlcluding a relationship with tbl_Office to say which office they are working out of}
I want to do a simple query saying what type of staff are working out of each office:
e.g.
If in Office 1 I might have a managing director, CEO and 2xOperations managers etc.
If in Office 2 I might have 5xAdmin, 3xHR, 6xIT help etc.
What sort of query can I run to return just a list of job titles for those present in the office I choose
- tbl_Positions {containing information on a specific job role}
- tbl_Office {containg information on an office}
- tbl_StaffDetails {containing information of all staff in the company, inlcluding a relationship with tbl_Office to say which office they are working out of}
I want to do a simple query saying what type of staff are working out of each office:
e.g.
If in Office 1 I might have a managing director, CEO and 2xOperations managers etc.
If in Office 2 I might have 5xAdmin, 3xHR, 6xIT help etc.
What sort of query can I run to return just a list of job titles for those present in the office I choose