Any one knows how could I use the equivalent of REGEXP_LIKE in SQLAlchemy? For example I\'d like to be able to do something like:
sa.Session.query(sa.Table).
It should (I have no access to Oracle) work like this:
sa.Session.query(sa.Table) \ .filter(sa.func.REGEXP_LIKE(sa.Table.c.column, '[[:digit:]]'))