mysql 的递归方法 查询pid为 5246

Posted liweicai137

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 的递归方法 查询pid为 5246相关的知识,希望对你有一定的参考价值。

select ID ,name from (
              select t1.ID,t1.PARENTID,name,
              if(find_in_set(PARENTID, @pids) > 0, @pids := concat(@pids, ',', ID), 0) as ischild
              from (
                   select t.ID,PARENTID,t.NAME as name from hn_cultivate_department t  order by PARENTID, ID
                  ) t1,
                  (select @pids := 5246) t2
             ) t3 where ischild != 0 

以上是关于mysql 的递归方法 查询pid为 5246的主要内容,如果未能解决你的问题,请参考以下文章

mysql 的递归方法 查询pid为 5246

mysql 的递归方法 查询pid为 5246

mysql递归查询cte

mysql递归查询

mysql怎么实现递归查询数据

mysql递归查询