Answer the question
In order to leave comments, you need to log in
Sampling from three tables by one request?
Hi all!
There are 3 tables, presented figuratively.
You need to infer the type, for example:
SELECT t1.*, GROUP_CONCAT(t2.type_id ORDER BY t2.id ASC SEPARATOR ',') AS type_id
FROM fruits t1
LEFT JOIN types t2 ON t2. type_id = t1. fruit_id
GROUP BY t1.id
Answer the question
In order to leave comments, you need to log in
Subquery? ) Or a question of optimality?
I would take Group_Concat to a higher level, and connect this query with another connection to the connections table, i.e. the third alias would replace id with names.
SELECT *, (SELECT GROUP_CONCAT(type SEPARATOR ',') FROM connections AS c LEFT JOIN types AS t ON c.type_id = t.id WHERE c.fruit_id = f.id) FROM fruits AS f;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question