group_concat 으로 저장된 값을 이용한 where in 조회 방법
예상 시나리오 1. DB : A / TABLE : test1 no type value 1 a Apple 2 b Banana 3 c Car DB : B / TABLE : test2 no member option 1 Jeffrey 1,2 2 Worker 1 3 Joy 2,3 4 Brian 3 SELECT BB.member, BB.option, (SELECT CONCAT('[', GROUP_CONCAT(AA.`value` ORDER BY AA.`no` SEPARATOR ']['), ']') str FROM A.test1 AA WHERE `no` IN (option)) str FROM B.test2 BB하지만 예상했던 결과는 NULL로 가득찼고 option이 1개 인 ..