I need to find a solution to have multiple joins where the DB schema looks like that;
table a
array ["1","2","3"]
table b
id 1
id 2
i will need to left join each id to the array.
SELECT * FROM tbl_b LEFT JOIN tbl_a ON tbl_b.id=tbl_a.array
how can this be done?