I got two tables. One is "employee", storing the information of employees, with "EmployeeID" as the primary key, and the other is"dependents", storing information of dependents of employees, with the "employeeID" as foreign Key,
I made a query to join the two table and use that query to make a report. However, I intended to have employee information followed by all his dependents' information, like this:
John Adams
Jane Adams, daughter
Mike Adams, son
However, the report gave me:
John, Adams
Jane Adams, daughter
John Adams
Mike Adams, son
How to do the query and report so that it can give me what I want?
Thanks in advance
I made a query to join the two table and use that query to make a report. However, I intended to have employee information followed by all his dependents' information, like this:
John Adams
Jane Adams, daughter
Mike Adams, son
However, the report gave me:
John, Adams
Jane Adams, daughter
John Adams
Mike Adams, son
How to do the query and report so that it can give me what I want?
Thanks in advance