SELECT *
FROM combination c
LEFT JOIN
option o
ON o.id = SUBSTRING_INDEX(c.combination, _ , 1)
LEFT JOIN
variant v
ON v.id = SUBSTRING_INDEX(c.combination, _ , -1)
I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...