Tried using "left join" but no differnece.
Basically the subfund table contains the foreign keys from client, director, manager, entity, etc, tables.
So with each row of data in subfund table is a client_ID, a entity_ID, manager_ID, etc.
So I want to select a client from client table and that is to bring up all matching results from the subfund row.
Then client_ID in client table matches a client_ID in a certain row in subfund table.
The other fields in that subfund row such as manager_ID, entity_ID, etc, should then connect with their primary keys and display entries in their respective tables.
Make sense??
So that's what I'm trying to do with my query.
Any ideas??