Let's say I have 2 Tables
One named Baskets,
Another named Fruits.
Baskets-
basket_id , basket_name
1 - Basket One
2 - Basket Two
Fruits-
fruit_id , basket_id , fruit_name
1 - 1 - Banana
2 - 1 - Apple
3 - 2 - Pear
SELECT * FROM baskets
JOIN (SELECT GROUP_CONCAT(fruit_id SEPARATOR ', ') FROM fruits WHERE baskets.basket_id=fruits.basket_id) AS der_fruits
ON baskets.basket_id=der_fruits.basket_id
Now with this query I want to get 2 rows (since there are 2 baskets) with a list of the fruit id's in it.
Like this:
basket_id, fruits
1 - 1, 2
2 - 3
But just now what I get is this:
basket_id, fruits
2 - 1, 2, 3
The thing is, I have to pass the global baskets.basket_id value in the DERIVED table.
Is there anything like a global scope in MySQL?
Or is there a way to pass the global baskets.basket_id value in a variable inside that derived table?