filter(sqlalchemy.not_(User.name.in_('alice', 'bob')))


How can I invert the in_ operator? I need a select like:
"... name NOT IN ('alice', 'bob')..."

...filter(not User.name.in_('alice', 'bob'))... is not working.
Hope that helps,
E

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to