I have a db with multiple tables to manage different contacts.
Each contact has a general information entry in ContactGeneral and then more detailed information in other tables related to ContactGeneral.
For example, John Doe has a basic information record in ContactGeneral and then 2 records in ContactEmploymentHistory for his past two jobs as well as 2 records in ContactEducationHistory for his two degrees.
How would you suggest going about creating a report that showed all the information in the db on John Doe?
Would it be best to add all fields to the report from their respective tables and then group? Or to create a massive query with all the information and then create the report from the query?
Thanks.