J
JohnB
When I run the query below I sometimes get fields that are NOT blank. What
causes that? What am I doing wrong?
I only want records returned that meet the first criteria and where the
ProductImage1 field is blank.
SELECT Products.ProductName, Products.ProductImage1, Products.ProductStock
FROM Products
WHERE (((Products.ProductName)="ocala")) OR (((Products.ProductName)="ocala,
fl") AND ((Products.ProductImage1) Is Null));
TIA
causes that? What am I doing wrong?
I only want records returned that meet the first criteria and where the
ProductImage1 field is blank.
SELECT Products.ProductName, Products.ProductImage1, Products.ProductStock
FROM Products
WHERE (((Products.ProductName)="ocala")) OR (((Products.ProductName)="ocala,
fl") AND ((Products.ProductImage1) Is Null));
TIA