Using Python and sqlalchemy:
How can I achieve the following MySQL statement with a WHERE ... IN clause using a tuple?
SELECT * FROM mytable WHERE (symbol, volume) IN (('ES', 238 ),('GB', 500 ),('OH', 800 ));
in sqlalchemy core (ie not the ORM version)
I looked in the documentation and generally on SO/google, this is nowhere to be found...