My Table Look like Below, Please refer Screenshot.Table Example Structure
I want a query to get the "id" when I pass the comma separated values (ex:25,10,3) in WHERE Condition of user_id column.
EX: Select id from table where user_id IN('25,10,3')
When I execute the above query I should get ID's 1 and 2.
I tired with "WHERE IN" and "find_in_set()". But nothing worked out...
Please help me to get this done...