I know this below query will find records that have a field's value starting with a certain prefix.
MyModel.where("field LIKE ?", "#{prefix}%")
What is the query to find records that have a field's value starting with one of the words in an array?
EDIT: I found solutions to other languages here: SQL LIKE % inside array and btw, I'm using MySQL DB.