mysql通过sql查询所有父id和子id

查询所有子id,父id为2.

select id from oauth_tm_org where id = 2
    union
select t.id
            from (select * from oauth_tm_org where parent_id is not null order by parent_id,id) t,
                     (select @pid := 2) pd
            where FIND_IN_SET(parent_id,@pid) > 0
                                and @pid := CONCAT(@pid,',',id)

查询所有父id,子id为2

SELECT
    t2.id 
FROM
    (
    SELECT
        @r AS _id,
        ( SELECT @r := parent_id FROM oauth_tm_org WHERE id = _id ) AS parent_id,
        @l := @l + 1 AS lvl 
    FROM
        ( SELECT @r := 2, @l := 0 ) vars,
        oauth_tm_org 
    WHERE
        @r != 0 
    ) t1
    JOIN oauth_tm_org t2 ON t1._id = t2.id 
ORDER BY
    t1.lvl DESC

查询所有子孙节点

SELECT
    DATA.id
FROM
    (
    SELECT
        @ids AS _ids,
        ( SELECT @ids := GROUP_CONCAT( id ) FROM oauth_tm_org WHERE FIND_IN_SET( parent_id, @ids ) ) AS cids,
        @l := @l + 1 AS LEVEL 
    FROM
        oauth_tm_org,
        ( SELECT @ids := '40', @l := 0 ) b 
    WHERE
        @ids IS NOT NULL 
    ) ID,
    oauth_tm_org DATA 
WHERE
    FIND_IN_SET( DATA.id, ID._ids ) 
ORDER BY
    LEVEL,
    id

一个注意点,会导致查询缺失数据。group_concat的长度默认为1024.因此需要修改他的最大长度。

局部修改:

SET GLOBAL group_concat_max_len = 10240000;
SET SESSION group_concat_max_len = 10240000;

永久修改:

去mysql的init的文件添加一行

group_concat_max_len=10240000

查看:

show variables like 'group_concat_max_len';

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值