Hi,
I'm trying to create a left join between 2 tables and the right table has a filter. The problem that I'm having is that I'd like to still show all records on the left table and show a blank cell on the right table.
Here is a simplified version of what I have...
SELECT tableA.item
FROM tableA LEFT JOIN tableB ON tableA.item = tableB.item
WHERE (((tableB.date)=#8/31/2006#));
tableA and tableB have the same data in the item field but tableB has a date field with one date that is different.
Thanks,
Mark
I'm trying to create a left join between 2 tables and the right table has a filter. The problem that I'm having is that I'd like to still show all records on the left table and show a blank cell on the right table.
Here is a simplified version of what I have...
SELECT tableA.item
FROM tableA LEFT JOIN tableB ON tableA.item = tableB.item
WHERE (((tableB.date)=#8/31/2006#));
tableA and tableB have the same data in the item field but tableB has a date field with one date that is different.
Thanks,
Mark