dongyiyu3953 2018-04-28 09:53
浏览 73
已采纳

用于在具有GROUP_CONCAT的表中显示父子的MySQL查询

We are building an application and client requirement is show child below each parent with a separator.

For eg: I have 2 tables as below

category:             category_description:

id(PK) | parent_id    id(fk) | name
-------|----------    -------|--------
    1  |    0             1  | Fruits
    2  |    1             2  | Apple
    3  |    1             3  | Orange
    4  |    0             4  | Veggies
    5  |    4             5  | Tomatoes
    6  |    4             6  | Cucumber

and so on ...

The result should show in a table as below

ID | Name
---|-----
 1 | Fruits
 2 | Fruits > Apple
 3 | Fruits > Orange
 4 | Veggies
 5 | Veggies > Tomatoes
 6 | Veggies > Cucumber

and so on...

Even if the client inserts randomly, the result should show as above.

I have tried to execute the following query

SELECT c.category_id AS category_id, c.parent_id, c.sort_order, 
GROUP_CONCAT(cd.name SEPARATOR '  >  ') AS name FROM
category c LEFT JOIN category_description cd ON c.category_id = 
cd.category_id LEFT JOIN category_description cd1 ON cd1.category_id =
c.parent_id GROUP BY c.category_id, cd.name

But doesn't show the result as expected. Please let me know, where I am going wrong.

Hope, I could explain it better. Thanks in advance

  • 写回答

1条回答 默认 最新

  • draj840143 2018-04-28 10:19
    关注

    I don't know why you are aggregating here; a join query should work, assuming there is only a single level hierarchy:

    SELECT
        c.ID,
        CONCAT(CASE WHEN c.parent_id = 0 THEN cd1.name ELSE cd2.name END,
            CASE WHEN c.parent_id <> 0 THEN CONCAT(' > ', cd1.name) ELSE '' END) AS Name
    FROM category c
    LEFT JOIN category_description cd1
        ON c.id = cd1.id
    LEFT JOIN category_description cd2
        ON c.parent_id = cd2.id
    ORDER BY
        CASE WHEN c.parent_id = 0 THEN c.id ELSE c.parent_id END,
        c.parent_id;
    
        ID  Name
    1   1   Fruits
    2   2   Fruits > Apple
    3   3   Fruits > Orange
    4   4   Veggies
    5   5   Veggies > Tomatoes
    6   6   Veggies > Cucumber
    

    Demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入