I have array with keywords:
keywords = ["word1","word2","word3"]
and i have table of items:
items:
- id
- title
- date
i want find any record that has a title inside the title field
so i want to mix between like("%{word}%".format(word=word))
and "OR"
note that there is other fields so i cant simply make or between all of them i want this to be AND with the the other conditions but unable to figure out how to mark them as a group of OR but AND with the others