I am doing a query for vendors who have a value populated for a specific field. Currently there are only 2 vendors with this field populated. Hence my results only come up 2. However, I want it to bring in "all" vendors even if they have this field blank to show up in the report.
For example,
The field is called "OIG_SEARACH" and the value is just a date. So far I have 2 vendors that have a dates,but i want to include vendors with blank's as well.
Here is my code..
SELECT dbo_APVENMAST.VENDOR, dbo_APVENMAST.VENDOR_VNAME, dbo_APVNMXVAL.MATRIX_CAT, dbo_APVNMXVAL.MX_VALUE
FROM dbo_APVENMAST LEFT JOIN dbo_APVNMXVAL ON dbo_APVENMAST.AP_OBJ_ID = dbo_APVNMXVAL.AP_OBJ_ID
WHERE (((dbo_APVNMXVAL.MATRIX_CAT)="OIG_SEARCH"));