Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

exclude data

My syntax does not work. I still get everything but I want to exclude everything with MutatieType_ID 173



WHERE

("MutatieType_ID" <> '173' or "MutatieType_ID" <> '152' or "MutatieType_ID" <> '204');

I have also tried:



WHERE

("MutatieType_ID" <> '173' and "MutatieType_ID" <> '152' and "MutatieType_ID" <> '204');

Both do not work.

Can anybody tell me whats wrong?

1 Solution

Accepted Solutions
Not applicable
Author

Hi Richard,

try it without apostrophe (MutatieType_ID <> 173).

Rainer

View solution in original post

3 Replies
Not applicable
Author

Hi Richard,

try it without apostrophe (MutatieType_ID <> 173).

Rainer

Not applicable
Author

remove " (double-qoutes) around the MutatieType_ID fieldname

Not applicable
Author

Thx, it works. Weird thing though, because first I have to load it WITH the apostrophe and in the where-statement it's without.