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 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器