In my MySQL table I have a column named member_id. That column stores values like this:
1,2,3,4,5
I need to check that by using
SELECT *
FROM member
WHERE 5 IN member_id
It’s not working well. Please help me write a SQL query that will find the appropriate results.
Use this query: