hello I have this problem where I have a list of ids like
ID= 1,2,3,4,5
and the field in the database has values like
3,4,56,34,1,2,3 // field name can be users
and now I want to select all the tables in the database which has any of the values in ID
I tried this with
FIND_IN_SET
but it's not working properly
FIND_IN_SET (users, $ID)
can anyone help me with this, please??