F
fipp
I am trying to run a query on a set of data where [evalpos] does not contain
"P" Or "K"
Here is what I have.
SELECT specialists.*, specialists.last, specialists.first, specialists.evalpos
FROM specialists
WHERE (((specialists.evalpos)<>"P" & "Or"<>"K"))
ORDER BY specialists.last, specialists.first;
In the Microsoft windown under where I also tried the following (Not "P" Or
"K") this didn't work either? Any help would be great.
I can get it to work with one at a time but not both.
"P" Or "K"
Here is what I have.
SELECT specialists.*, specialists.last, specialists.first, specialists.evalpos
FROM specialists
WHERE (((specialists.evalpos)<>"P" & "Or"<>"K"))
ORDER BY specialists.last, specialists.first;
In the Microsoft windown under where I also tried the following (Not "P" Or
"K") this didn't work either? Any help would be great.
I can get it to work with one at a time but not both.