I am trying to query in Peewee with results that should have a specific substring in them.
For instance, if I want only activities with "Physics" in the name:
schedule = Session.select().join(Activity).where(Activity.name % "%Physics%").join(Course).join(StuCouRel).join(Student).where(Student.id == current_user.id)
The above example doesn't give any errors, but doesn't work correctly.
In python, I would just do if "Physics" in Activity.name
, so I'm looking for an equivalent which I can use in a query.
Quick answer:
just use
Activity.name.contains('Physics')
Depending on the database backend you're using you'll want to pick the right "wildcard". Postgresql and MySQL use "%", but for Sqlite if you're performing a
LIKE
query you will actually want to use "*" (although for ILIKE it is "%", confusing).I'm going to guess you're using SQLite since the above query is failing, so to recap, with SQLite if you want case-sensitive partial-string matching:
Activity.name % "*Physics*"
, and for case-insensitive:Activity.name ** "%Physics%"
.http://www.sqlite.org/lang_expr.html#like