SA has regex support, but it looks like Python regex ( Regular expressions in SQLalchemy queries? )
I need to use a regular expression to match some lines (a line contains 1 line of the log, so the regular expression is a natural match), but for performance reasons, I would prefer to do this using the PG backend, for example, in this question :
select * from table where name ~ 'foo';
How can I combine both PG-regex AND SQLAlchemy objects in one query?
python regex postgresql sqlalchemy
LetMeSOThat4U
source share