What is Tamino's NOT operator?

Hello!

I got parse a querystring that contains basic SQL operators like AND,OR,NOT. As I know Tamino doesn’t understand NOT operator, what is the Tamino’s equivalent operator?

Query string example:
Property[@ino:id>10 and @ino:id<20 not (@ino:id=15 or @ino:id=17) and @ino:id!=16]/Zip

The problem is that I can just replace NOT with AND and ‘=’ with ‘!=’ because there can be very complex situation.

Any idea?Thank you.

HI,
actualy Tamino supports the function not()not the operator NOT
You can use it the same way:
Property[@ino:id>10 and @ino:id<20 not (@ino:id=15 or @ino:id=17) and @ino:id!=16]/Zip

hope it helps, good luck

It did!
You rule!
Thanks.