I want to use conditional expression in PyTables where method. In SQL, I would use CASE expression (PostgreSQL, "CASE WHEN a=b THAN 1 ELSE 0"), if usual python, I would use conditional expression "1 if a==b else 0". But I couldn't find how it can be done in PyTables where
method.
I checked http://pytables.github.io/usersguide/condition_syntax.html but I don't know if it's possible.