E
E
Evgeny Konkin2016-02-10 21:47:11
PHP
Evgeny Konkin, 2016-02-10 21:47:11

Sampling from three tables by one request?

Hi all!
There are 3 tables, presented figuratively.
8e417eb73d804f899724dae22f9bfb4f.png
You need to infer the type, for example:

  1. Apple is green, sweet, medium
  2. Orange is yellow, sweet

etc.
I'm trying to make a selection in one query from three tables.
It turned out to pull out the type_id list, through GROUP_CONCAT, but I can’t pull out the type list in any way!
Tell me who knows how?
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

Thank you!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Prikazchikov, 2016-02-10
@konnn

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.

A
Andrey Burov, 2016-02-10
@BuriK666

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 question

Ask a Question

731 491 924 answers to any question