Sqlalchemy complex in_ clause
- by lostlogic
I'm trying to find a way to cause sqlalchemy to generate sql of the following form:
select * from t where (a,b) in ((a1,b1),(a2,b2));
Is this possible?
If not, any suggestions on a way to emulate it?
Thanks kindly!