SELECT e.id,title,GROUP_CONCAT(`name`) AS `name` it
FROM igh_education eio
LEFT JOIN igh_project p on FIND_IN_SET(project_num, e.`section`)
GROUP BY e.id
ORDER BY e.id ASC