Using multiple LIKE
statements is just slow and annoying...
Welcome regexp_like()
This function allows you to use reg expression to use many LIKE statements in one line.
select * from my_table where my_column LIKE ['%hello%'|'example%'|'%random%'|'%demo'];
select *
from my_table
where regexp_like(my_column, 'hello|example|random|demo');
the |
is OR