Hi,
i have an array with data, which is stored in a database table field searchField
["John","BMW","Germany"]
Now i will search in different tables after these data
SELECT user.name, cars.model, country.nation WHERE
user.name LIKE %JOHN% OR
cars.model LIKE %BMW% OR
country.nation LIKE %Germany%;
What is the best way to realize this?
Thx