Hello everyone. I desperately need your help.
Suppose I have a mother table with 600 records and 4-5 child tables that have a subsum of the 600 records of the mother table. For example, I have 600 books as mother table and another child table Bought that contains 80 of the 600 books.
What I want to do is this:
Create a query that takes 3 primary fields from mother table, 2 from Child1table 2 from Child2table and 2 from Child3table. My problem is that, since there is a certain relationship among tables, I can't have all the 600 records in the query.
Example of a record of the query:
Primary1 Primary2 Child1table1 Child1table2 Child1table2 Child2table2
Title1 Author1 Purchdate1 PurchPrice1 2ndeditdate 2ndeditprice
.....
Title600 Author600 Purchdate600 PurchPrice600 2ndeditdate600 2ndeditprice600
If for a certain Title a record can't be found in a table, e.g Child1table, I want that value to be shown as null in the query.
Any ideas??
Suppose I have a mother table with 600 records and 4-5 child tables that have a subsum of the 600 records of the mother table. For example, I have 600 books as mother table and another child table Bought that contains 80 of the 600 books.
What I want to do is this:
Create a query that takes 3 primary fields from mother table, 2 from Child1table 2 from Child2table and 2 from Child3table. My problem is that, since there is a certain relationship among tables, I can't have all the 600 records in the query.
Example of a record of the query:
Primary1 Primary2 Child1table1 Child1table2 Child1table2 Child2table2
Title1 Author1 Purchdate1 PurchPrice1 2ndeditdate 2ndeditprice
.....
Title600 Author600 Purchdate600 PurchPrice600 2ndeditdate600 2ndeditprice600
If for a certain Title a record can't be found in a table, e.g Child1table, I want that value to be shown as null in the query.
Any ideas??