I am trying to match a string against one of three possible entries. Right now I have
select * from table x
where column1 like '%INSERT%'
or column1 like '%Insert%'
or column1 like '%insert%';
I'm wondering if there is a more efficient way to do this, maybe using 'in' and 'like' in conjunction?