G
grep
Given this query:
SELECT CompanyID, CompanyName, Inactive FROM tblCustomers UNION SELECT
VendorID AS CompanyID, CompanyName, Inactive FROM tblVendors
WHERE Inactive=No
ORDER BY CompanyName;
Why do I still get EVERY record, including the ones where Inactive is True?
I've tried substituting 0 and False for No, with the same results.
TIA
grep
SELECT CompanyID, CompanyName, Inactive FROM tblCustomers UNION SELECT
VendorID AS CompanyID, CompanyName, Inactive FROM tblVendors
WHERE Inactive=No
ORDER BY CompanyName;
Why do I still get EVERY record, including the ones where Inactive is True?
I've tried substituting 0 and False for No, with the same results.
TIA
grep