I need to compare a column value with user input numbers. The row in the column is in the format 8|5|12|7|
Now I need to compare the input values of user 2 , 5 , 3 with this column value
When I use the LIKE operator as '%2|%' , I get the result by matching the value of the |12|
How to match string using Regular Expression or any other way?
source share