Hey guys,
I have a table with 50 records and another table with 10 records. The table qith 10 records correspond to 10 of the records in the larger table. How do I make a query to show all 50 records, but include the extra fields from the 10 records where applicable? They way my query runs only shows 10 records.
I have a table with 50 records and another table with 10 records. The table qith 10 records correspond to 10 of the records in the larger table. How do I make a query to show all 50 records, but include the extra fields from the 10 records where applicable? They way my query runs only shows 10 records.
Code:
Table1
ID Name
1 John
2 Julie
.
.
50 Jane
Table2
ID Car
1 Honda
50 Toyota
Query to Show
1 John Honda
2 Julie
50 Jane Toyota
Last edited: