###########
# test data
create table tmp (
UID int,
marID int
);
insert into tmp select 1, null;
insert into tmp select 2, 1;
insert into tmp select 3, 1;
insert into tmp select 4, 2;
insert into tmp select 5, 7;
insert into tmp select 6, 4;
insert into tmp select 7, null;
################
# Google 关键字:
#
# How to create a MySQL hierarchical recursive query
select UID,marID
from
(
select * from tmp order by marID
) t1,
(
select @pv := 1
) t2
where find_in_set(marID, @pv)
and length(@pv := concat(@pv, ',', UID))
※ 引述《bill0205 (ZzZz)》之铭言:
: (针对 SQL 语言的问题,用这个标题。请用 Ctrl+Y 砍掉这行)
: 数据库名称: MySQL
: 数据库版本: 5.7
: 内容/问题描述:
: 我有一张table(users) 字段分别为 UID (PK) , marID(FK,users.UID)
: 我想做递回查询
: 假设有资料为
: UID marID
: 1 NULL
: 2 1
: 3 1
: 4 2
: 5 7
: 6 4
: 7 NULL
: 我有找到相关方法
: with tmpTB ( ... union all ... ) select * from tmpTB;...
: 但是还是失败
: 我想做的是能否利用一个UID 就能找到所有部属
: ex UID = 1
: 则会查到
: UID marID
: 2 1
: 3 1
: 4 2
: 6 4
: 不知道有没有类似方法呢 感谢各位