I have a table EMPDetails like
EmpID EmpName EmpFriendsID
1 Hari 2,3
2 Ramesh
3 Suresh
I would like to have a query to retrieve EmpFriends name if i give an EmpID.
example if EmpID 1 is provided,result should be
1 Hari 2,3 Ramesh,Suresh
Thanks.
To Join tables use FIND_IN_SET() and then group recors and use GROUP_CONCAT() to concatenate friends names
SQLFiddle demo