I have 3 tables that I need to combine. When I use an inner join this works for 2 tables but when I try to add the 3rd table the result set is inexistant.
This is my table structure
tblEmployees
empid (primary, autonumber)
.
.
the 2 related tables:
tblEmployeeAssets
empassetsid (primary, autonumber)
empid (foreign key)
.
.
.
tblEmployeeStats
statsid (primary, autonumber)
empid (foreign key)
.
.
.
How can I produce a result set that returns employees that match criteria in each table?
thanks for your help
This is my table structure
tblEmployees
empid (primary, autonumber)
.
.
the 2 related tables:
tblEmployeeAssets
empassetsid (primary, autonumber)
empid (foreign key)
.
.
.
tblEmployeeStats
statsid (primary, autonumber)
empid (foreign key)
.
.
.
How can I produce a result set that returns employees that match criteria in each table?
thanks for your help