Hi,
I'm sure this is a newbie question, I just can't find the answer anywhere. In table A I have a large number of records. Table B is much smaller but they are joined by primary keys. When I view the query, I can see the correct data from each table, but it only shows the common records. I would like it to show all records in column A, even though many columns will be empty. How could I do this?
Example:
Table A
1 Apple Red
2 Banana Yellow
3 Grape Purple
4 Lettuce Green
5 Orange Orange
6 Radish Red
Table B
1 Apple Red 1,000
4 Lettuce Green 250
6 Radish Red 400
Result of query would be:
1 Apple Red 1,000
2 Banana Yellow
3 Grape Purple
4 Lettuce Green 250
5 Orange Orange
6 Radish Red 400
Thank you.
I'm sure this is a newbie question, I just can't find the answer anywhere. In table A I have a large number of records. Table B is much smaller but they are joined by primary keys. When I view the query, I can see the correct data from each table, but it only shows the common records. I would like it to show all records in column A, even though many columns will be empty. How could I do this?
Example:
Table A
1 Apple Red
2 Banana Yellow
3 Grape Purple
4 Lettuce Green
5 Orange Orange
6 Radish Red
Table B
1 Apple Red 1,000
4 Lettuce Green 250
6 Radish Red 400
Result of query would be:
1 Apple Red 1,000
2 Banana Yellow
3 Grape Purple
4 Lettuce Green 250
5 Orange Orange
6 Radish Red 400
Thank you.