美文网首页
SQL 查询所有下级

SQL 查询所有下级

作者: 戬谷stone | 来源:发表于2020-04-15 11:08 被阅读0次

    select *,ischild from (

    select t1.*,

    if(find_in_set(pid, @pids) > 0, @pids := concat(@pids, ',', id ), 0) as ischild

    from (

      select * from hqf_member t order by pid, id

    ) t1,

    (select @pids :=上级ID ) t2

    ) t3 where ischild

    相关文章

      网友评论

          本文标题:SQL 查询所有下级

          本文链接:https://www.haomeiwen.com/subject/ncesphtx.html