MySQL : Multiple row as comma separated single row(MySQL:多行作为逗号分隔的单行)
问题描述
我有两个表:DISH 和 DISH_HAS_DISHES.Dish 表包含所有菜肴,Dish_has_dishes"表与Dish"表是一对多的关系.IE.一道菜可以有多道菜.例如
I have two tables : DISH and DISH_HAS_DISHES. Dish table has all the dishes and "Dish_has_dishes" table has a one-to-many relationship with "Dish" table. I.e. a dish can have multiple dishes. For example
菜:
dish_id dish_name
1 dish_1
2 dish_2
3 dish_3
4 dish_4
DISH_HAS_DISHES:
meal_id dish_id
1 2
1 3
1 4
这里的meal_id和dish_id都是DISH表中的ID.现在我想要这样的格式:
Here meal_id and dish_id both are IDs from DISH table. Now I want a format like this:
meal_id dish_ids dish_names
1 2,3,4 dish_2, dish_3, dish_4
那是每顿饭用逗号分隔的菜名和菜名.怎么做?
That is comma separated dish id and names for each meal. How to do that?
推荐答案
使用 GROUP_CONCAT FUNCTION
Use GROUP_CONCAT FUNCTION
http://dev.mysql.com/tech-resources/articles/4.1/grab-bag.html
SELEct m.meal_Id,
GROUP_CONCAT(dish_id) dish_ids,
GROUP_CONCAT(dish_name) dish_names
FROM DISH_HAS_DISHES m JOIN DISH d ON (m.dish_id = d.dish_id)
GROUP BY meal_Id
这篇关于MySQL:多行作为逗号分隔的单行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:多行作为逗号分隔的单行
基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
