Get all children by parent id and where clause in mysql

后端 未结 2 1342
生来不讨喜
生来不讨喜 2021-01-17 05:50

I have a table that stores id and parent_id in same table. I want a recursive query that accepts parent_id as an argument and returns all child nodes with nth level. For thi

相关标签:
2条回答
  • 2021-01-17 06:21

    There are two interpretations possible. From a recent comment I understand you need the first one:

    Exclude children of excluded parents

    So even if children are not editors, if one of their ancestors is an editor they should be excluded. That means you should exclude records in the inner most query: add the where there:

    select  id,
            name,
            parent_id,
            user_type
    from    (select * from p
             where user_type <> 'editor'
             order by parent_id, id) products_sorted,
            (select @pv := '19') initialisation
    where   find_in_set(parent_id, @pv)
    and     length(@pv := concat(@pv, ',', id))
    

    Include children of excluded parents

    In this interpretation you want editor children to be included irrespective of whether any of their ancestors are to be excluded.

    Add the user_type field in the select list and then wrap that query that performs the filter, like this:

    select  *
    from    (
            select  id,
                    name,
                    parent_id,
                    user_type
            from    (select * from p
                     order by parent_id, id) products_sorted,
                    (select @pv := '19') initialisation
            where   find_in_set(parent_id, @pv)
            and     length(@pv := concat(@pv, ',', id))
    ) as sub
    where user_type <> 'editor'
    

    So again, here the result will include also records of which the parent-hierarchy (parent, grandparent, grand-grandparent, ...) might not be completely included (because some of those could be editor).

    0 讨论(0)
  • 2021-01-17 06:27

    I think it'll be easier to create a joint rather then using sub-queries, but without seeing the design of tables you are using I'm afraid I can't really give you good example.

    0 讨论(0)
提交回复
热议问题