I have a string, for which I need to find all records with matching prefixs:
path = '/abc/123/456'
session.query(Site).filter(path.startswith(Site.path_prefix))
The following records would match when path_prefix equals:
/abc
/ab
/abc/123
But not:
/asd
/abc/123/456/789
/kjk
Is this possible with SqlAlchemy, without switching over to python?
Site.path_prefix in path? Also, in pure Python semantic this will match strings like23/4and the empty string too, is that what you want? – KennyTM Nov 1 '12 at 11:43