I have a string in MySQL database column as
@ , 1 , 2, 3, 4 , @
I would like to query record using other comma separated string like
1, 3
1, 2
And they should return result. What should be use Like or RLIKE and how.
I have a string in MySQL database column as
@ , 1 , 2, 3, 4 , @
I would like to query record using other comma separated string like
1, 3
1, 2
And they should return result. What should be use Like or RLIKE and how.