How to write multiple 'Contains' in SQL query
Hello everybody. Let's say I have an array with strings that are values of rows that I need to pull from DB. Let's say the array is:searchStringArray = {'qwe', 'rty', 'asd',' fgh', 'zxc'}I can construct my WHERE statement in my query in a pretty simple way:"WHERE
t1.column1 IN (' " || Concat Items(searchStringsArray, " ', ' ")|| " ' )"which when parsed would give me the following string:"WHERE
t...