R
Rocky
I'm trying to simply display all records with the EndMinute field value of
0 or 15 or30 or 45
When I use the following code...
SELECT Cust.[Case #], Cust.Client, Cust.Server, Cust.[Service Code],
Cust.[Service Desc], Cust.[End Minute]
FROM Cust
WHERE Cust.[Case #] Is Not Null AND Cust.[End Minute]<>0;
I get the expected results of a few records with End Minute of 15, 30 or 45
I should be able to change the WHERE statement to...
WHERE Cust.[Case #] Is Not Null AND Cust.[End Minute]<>0<>15<>30<>45;
The result is ALL records show up again. If I even try <>0<>15 it displays
all records.
I believe I'm doing exactly what examples show i.e. www.w3schools.com example
SELECT * FROM Persons WHERE
LastName='Svendson'
AND (FirstName='Tove' OR FirstName='Ola')
Thanks if anyone can help
0 or 15 or30 or 45
When I use the following code...
SELECT Cust.[Case #], Cust.Client, Cust.Server, Cust.[Service Code],
Cust.[Service Desc], Cust.[End Minute]
FROM Cust
WHERE Cust.[Case #] Is Not Null AND Cust.[End Minute]<>0;
I get the expected results of a few records with End Minute of 15, 30 or 45
I should be able to change the WHERE statement to...
WHERE Cust.[Case #] Is Not Null AND Cust.[End Minute]<>0<>15<>30<>45;
The result is ALL records show up again. If I even try <>0<>15 it displays
all records.
I believe I'm doing exactly what examples show i.e. www.w3schools.com example
SELECT * FROM Persons WHERE
LastName='Svendson'
AND (FirstName='Tove' OR FirstName='Ola')
Thanks if anyone can help