use or operator within like regex expression
I need to match a string that includes either of two strings in pattern - *STR1* or *STR2*. e,gselect 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 ba...