there is a problem. What should I do if I want to take a record that matches multiple characters in a field?
select *
from actor
where last_name like ("% DAVI%","MOSTEL%","ABC","kkk%aa")
the above sql statement is incorrect. Like does not support multiple strings. How can it be implemented?
Thank you