I need to match a string that includes either of two strings in pattern - *STR1* or *STR2*.
e,g
select from t where c like “*((STR1)|(STR2))*”
I cannot do select from t where c like “*STR1*” or c like “*STR2*”
due to way UI flows these filters in to backend
.
Any suggestions?
Thanks!