As stated,
I created a query that join 2 tables. but when I add a field from the av table
the field is blank.
av table has name,color, deth
[master Without Matching av] query has name,color
SELECT [master Without Matching av].name,
[master Without Matching av].color,
av.deth
FROM [master Without Matching av]
LEFT JOIN av ON [master Without Matching av].name = av.name
WHERE (((av.name) Is Null));
Why does the data not show for av.deth? The query execute do the column is empty. (Access 2000)
I created a query that join 2 tables. but when I add a field from the av table
the field is blank.
av table has name,color, deth
[master Without Matching av] query has name,color
SELECT [master Without Matching av].name,
[master Without Matching av].color,
av.deth
FROM [master Without Matching av]
LEFT JOIN av ON [master Without Matching av].name = av.name
WHERE (((av.name) Is Null));
Why does the data not show for av.deth? The query execute do the column is empty. (Access 2000)