【Python】peeweeで部分一致のAND検索
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Page | |
import operator | |
clauses = [ | |
(Page.title.contains("hoge")), | |
(Page.title.contains("fuga")) | |
] | |
Page.select().where(reduce(operator.and_, clauses)) | |
""" | |
SELECT * FROM page WHERE (title LIKE '%hoge%' AND title LIKE '%huga%') | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment