I have a group feature on my website that allows 1 user to put the userids of any of his or her friends into an invitedusers column. I need to do an SQL search to determine whet
This should do the job:
SELECT userid, name... FROM mytable WHERE FIND_IN_SET('234', invitedusers) !=0;