Home  >  Q&A  >  body text

How to create a MySQL hierarchical recursive query?

<p>我有一个 MySQL 表,如下所示:</p> <table class="s-table"> <thead> <tr> <th style="text-align:center;">id</th> <th style="text-align:center;">名称</th> <th style="text-align:center;">parent_id</th> </tr> </thead> <tbody> <tr> <td style="text-align:center;">19</td> <td style="text-align:center;">类别1</td> <td style="text-align:center;">0</td> </tr> <tr> <td style="text-align:center;">20</td> <td style="text-align:center;">类别2</td> <td style="text-align:center;">19</td> </tr> <tr> <td style="text-align:center;">21</td> <td style="text-align:center;">类别3</td> <td style="text-align:center;">20</td> </tr> <tr> <td style="text-align:center;">22</td> <td style="text-align:center;">类别4</td> <td style="text-align:center;">21</td> </tr> <tr> <td style="text-align:center;">...</td> <td style="text-align:center;">...</td> <td style="text-align:center;">...</td> </tr> </tbody> </table> <p>现在,我想要一个 MySQL 查询,我只需向其提供 id [例如 <code>id=19</code>],然后我应该获取其所有子 id [即结果应该有 id '20,21,22']....</p> <p>子级的层次结构未知;它可能会有所不同......</p> <p>我知道如何使用 <code>for</code> 循环来做到这一点...但是如何使用单个 MySQL 查询来实现相同的目的?</p>
P粉329425839P粉329425839423 days ago536

reply all(1)I'll reply

  • P粉393030917

    P粉3930309172023-08-24 13:05:06

    For MySQL 8: Use recursion Use syntax.
    For MySQL 5.x: Use inline variables, path IDs, or self-joins.

    MySQL 8

    with recursive cte (id, name, parent_id) as (
      select     id,
                 name,
                 parent_id
      from       products
      where      parent_id = 19
      union all
      select     p.id,
                 p.name,
                 p.parent_id
      from       products p
      inner join cte
              on p.parent_id = cte.id
    )
    select * from cte;
    The value specified in

    parent_id = 19 should be set to the id of the parent whose descendants you want to select.

    MySQL 5.x

    For versions of MySQL (up to version 5.7) that do not support common table expressions, you can use the following query to achieve this:

    select  id,
            name,
            parent_id 
    from    (select * from products
             order by parent_id, id) products_sorted,
            (select @pv := '19') initialisation
    where   find_in_set(parent_id, @pv)
    and     length(@pv := concat(@pv, ',', id))

    This is a violin.

    Here, the value specified in @pv := '19' should be set to the id of the parent whose descendants you want to select.

    This will also work if the parent has multiple children. However, each record is required to meet the parent_id < id< id condition, otherwise the result will be incomplete.

    Variable assignment within query

    This query uses specific MySQL syntax: variables are allocated and modified during execution. Some assumptions are made about the execution order:

    • Evaluate the from clause first. This is where @pv is initialized.
    • The where clause is evaluated for each record in the order in which it was retrieved from the from alias. Therefore, the condition set here only includes records whose parent has been identified as being in the descendant tree (all descendants of the primary parent will be incrementally added to @pv).
    • The conditions in this where clause are evaluated sequentially, and evaluation is interrupted once the overall result is determined. So the second condition must be in second position because it adds the id to the parent list and this will only happen if the id passes the first condition. The length function is called just to ensure that this condition is always true, even if the pv string produces a false value for some reason.

    All in all, one may find these assumptions too risky to rely on. DocumentationWarning:

    So even though it is consistent with the above query, the order of evaluation may still change, for example, when you add conditions or use this query as a view or subquery within a larger query. This is a "feature" that will be removed in a future MySQL version :

    As mentioned above, starting with MySQL 8.0, you should use recursive with syntax.

    efficiency

    For very large data sets, this solution may be slow because the find_in_set operation is not the most ideal way to find numbers in a list, and certainly does not achieve the same goal as The number of records returned.

    Alternative 1: Use recursion, Connection

    More and more databases implement SQL:1999 ISO standard WITH [RECURSIVE] Syntax for recursive queries (e.g. Postgres 8.4 , SQL Server 2005 , DB2, Oracle 11gR2 , SQLite 3.8.4 , Firebird 2.1 , H2 , HyperSQL 2.1.0 , Teradata, MariaDB 10.2.2 ). Starting with version 8.0, MySQL also supports it. See the top of this answer for the syntax to use.

    Some databases have alternative non-standard syntax for hierarchical lookups, such as the Oracle, DB2, Informix, CUBRID and other databases.

    MySQL version 5.7 does not provide such functionality. When your database engine provides this syntax or you can migrate to a database engine that provides this syntax, then this is undoubtedly the best choice. If not, consider the following alternatives.

    Alternative 2: Path Style Identifier

    Things become much easier if you assign id values ​​that contain hierarchical information (path). For example, in your case this might look like this:

  • Cancelreply