I am using db_select for database query, following code works fine when $keyword is any string
$result = db_select('my_table', 'mt') ->fields('mt') ->condition('my_column', '%' . db_like($keyword) . '%', 'LIKE') ->execute() ->fetchAllKeyed(); How can I make the same query working when $keyword is suppose to be an array of strings like ("del","mum") ,if my_column is location column so query will return me places like Delhi, Mumbai.