【问题标题】:mysql hierarchy self-join, retrieve all subcategoriesmysql层次结构自加入,检索所有子类别
【发布时间】:2015-11-05 01:42:49
【问题描述】:

我的表 categories 包含以下列:

category_id
category_name
parent_id

我需要获取给定主类别的所有级别的所有子类别的列表,因此,例如,如果我给出某个 lvl 3 类别的 id,我将返回所有 lvl 4、5、6... 类别的列表是那个 lvl 3 类别的孩子。

不需要保留任何层次结构,只需一个简单的列表即可。

我最初考虑只使用几个连接和子查询来做,但我认为之后类别会更深,所以这不是一个可行的方法。

由于我刚刚开始使用 SQL,我仍然不知道如何编写递归查询,所以这将是一个很好的帮助和学习材料。

【问题讨论】:

  • 我可以通过我已经拥有的存储过程调用来做到这一点。如果您需要,请告诉我。另外,我认为您没有在上面的伪模式中显示 id 列。请显示show create table categories的文本输出
  • 它是category_id,如果您指的是id,我没有将其命名为id。我可以看看那个程序吗?
  • 是的,你可以。这里有非storedProc解决方案的接受者吗?顺便说一句,它不会是递归的,而是类似递归的。你能通过在SqlFiddle上放置一个模式和数据(比如 10 行)来节省我一点时间吗?
  • 其实你不需要做sqlfiddle

标签: mysql sql recursion


【解决方案1】:

首先阅读底部的Please Note。好的好的,你回来了。

为类似递归的层次结构检索创建存储过程。

请注意,您不希望按级别进行,但这很容易做到。

架构:

create table category
(   category_id int not null auto_increment primary key,
    category_name varchar(40) not null,
    parent_id int null,  -- index on this column not a shabby idea
    unique key (category_name)
);

insert category(category_name,parent_id) values ('car',null),('food',null); -- 1,2
insert category(category_name,parent_id) values ('ford',1),('chevy',1),('fruit',2); -- 3,4,5
insert category(category_name,parent_id) values ('economy',3),('escort',6),('exhaust',7); -- 6,7,8
insert category(category_name,parent_id) values ('chassis',7),('loud',8),('banana',5); -- 9,10,11
-- ok granted I could have explicity inserted category_id to make it more obvious

创建存储过程:

-- drop procedure showHierarchyBelow;
delimiter $$
create procedure showHierarchyBelow
(
catname varchar(40)
)
BEGIN
    -- deleteMe parameter means i am anywhere in hierarchy of role
    -- and i want me and all my offspring deleted (no orphaning of children or theirs)
    declare bDoneYet boolean default false;
    declare working_on int;
    declare theCount int;
    declare findFirst int;

    select ifnull(category_id,0) into findFirst from category where category_name=catname;

    CREATE TABLE xx_RecursishHelper_xx
    (   -- it's recurshish, not recursive
        category_id int not null,
        processed int not null
    );
    if isnull(findFirst) then
        set findFirst=0;
    end if;
    insert into xx_RecursishHelper_xx (category_id,processed) select findFirst,0;
    if (findFirst=0) then
        set bDoneYet=true;
    else
        set bDoneYet=false;
    end if;

    while (!bDoneYet) do
        -- I am not proud of this next line, but oh well
        select count(*) into theCount from xx_RecursishHelper_xx where processed=0;

        if (theCount=0) then 
            -- found em all
            set bDoneYet=true;
        else
            -- one not processed yet, insert its children for processing
            SELECT category_id INTO working_on FROM xx_RecursishHelper_xx where processed=0 limit 1;
            insert into xx_RecursishHelper_xx (category_id,processed)
            select category_id,0 from category
            where parent_id=working_on;

            -- mark the one we "processed for children" as processed
            update xx_RecursishHelper_xx set processed=1 where category_id=working_on;
        end if;
    end while;

    delete from xx_RecursishHelper_xx where category_id=findFirst;

    select x.category_id,c.category_name
    from xx_RecursishHelper_xx x
    join category c
    on c.category_id=x.category_id;

    drop table xx_RecursishHelper_xx;
END
$$

测试存储过程:

call showHierarchyBelow('food');
+-------------+---------------+
| category_id | category_name |
+-------------+---------------+
|           5 | fruit         |
|          11 | banana        |
+-------------+---------------+

call showHierarchyBelow('car');
+-------------+---------------+
| category_id | category_name |
+-------------+---------------+
|           3 | ford          |
|           4 | chevy         |
|           6 | economy       |
|           7 | escort        |
|           8 | exhaust       |
|           9 | chassis       |
|          10 | loud          |
+-------------+---------------+

call showHierarchyBelow('ford');
+-------------+---------------+
| category_id | category_name |
+-------------+---------------+
|           6 | economy       |
|           7 | escort        |
|           8 | exhaust       |
|           9 | chassis       |
|          10 | loud          |
+-------------+---------------+

call showHierarchyBelow('xxx');
-- no rows

请注意,我只是根据您的需要在几个月前修改了我的 Answer

请注意

以上内容仅供说明之用。在现实世界的情况下,我永远不会在存储过程中创建表。 DDL 开销很大。相反,我会使用带有会话概念的预先存在的非临时表。并将其从行中清除以完成会话。所以不要把上面的东西当成稻草人,等着你让它更高效。询问这是否令人困惑。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2011-05-26
    • 1970-01-01
    • 1970-01-01
    • 2015-01-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多