I have the following in a query which works
SELECT *
FROM Table1
WHERE (Police)=[enter police];
But i want to add another field, so the query will only list sites that equal the statment, i have tried various ways of getting to work and now i am stuck.
SELECT *
FROM Table1
WHERE (Police)=[enter police]AND SigNO=not Null;
the above returns no records at all, iam trying to get sites listed that Police=area that the user types in and SigNo is not empty.
Thanks
SELECT *
FROM Table1
WHERE (Police)=[enter police];
But i want to add another field, so the query will only list sites that equal the statment, i have tried various ways of getting to work and now i am stuck.
SELECT *
FROM Table1
WHERE (Police)=[enter police]AND SigNO=not Null;
the above returns no records at all, iam trying to get sites listed that Police=area that the user types in and SigNo is not empty.
Thanks