分享

Hierarchical queries in MySQL

 milton99 2011-10-18

EXPLAIN EXTENDED

How to create fast database queries

My latest article on SQL in general: Shared Plan and Algorithm Network Cache (SPANC). You're welcome to read and comment on it.

Hierarchical queries in MySQL

There is no need in explaining how convenient hierarchical queries are.

A quick reminder: hierarchical data is a parent-child relationship contained in one table.

A typical task is to return values from the table in the following way:

  1. Resultset should be sorted like a tree, that is lexical sort by ancestry chains
  2. Depth level should be returned along with each row

It may sound confusing, but it’s very simple in fact, like shown on this Oracle query:

1.SELECT  LPAD(' 'level * 4, ' ') || id, parent, level
2.FROM    t_hierarchy
3.START WITH
4.parent = 0
5.CONNECT BY
6.parent = PRIOR id
idparentlevel
101
212
723
823
923
1023
1123
312
1233
1333
1433
1533
1633
412
1743
1843
1943
2043
2143
512
2253
2353
2453
2553
2653
612
2763
2863
2963
3063
3163

We have a nice tree sorted as a tree, with rows indented according to the depth level.

In the query above, START WITH defines the root of the tree, and CONNECT BY defines join condition between parent and child rows. Parent columns are defined by adding PRIOR keyword to them.

In MySQL there is no such construct, but it can be emulated.

We may try construct a sorting function somehow, but it will be too complex to implement and probably inefficient.

Instead, we will develop our function in the following way:

  1. The function will be called for each row in a rowset
  2. We will not use the actual values of the rowset, but instead keep all intermediary data in the session variables. Rowset will serve just as a dummy source of rows for subsequent joins
  3. We will not use recursion, as it’s impossible to keep the recursion state between function calls. Instead, we will just calculate next id given only current id

How do we find the next id given a current one?

  1. Initially, id is set to the id of the root we start with.
  2. If there is a row in the table with the same parent but greater id, we return that greater id, i. e. we return the next sibling of our row.
  3. If there current row is last of its parent, the parent becomes the current id, and we try repeat the step above.
  4. If the our row is the last child of the root, we return NULL for this call and all subsequent calls.

This is implemented as following:

Table creation details

01.CREATE FUNCTION hierarchy_connect_by_parent_eq_prior_id(value INTRETURNS INT
02.NOT DETERMINISTIC
03.READS SQL DATA
04.BEGIN
05.DECLARE _id INT;
06.DECLARE _parent INT;
07.DECLARE _next INT;
08.DECLARE CONTINUE HANDLER FOR NOT FOUND SET @id = NULL;
09. 
10.SET _parent = @id;
11.SET _id = -1;
12. 
13.IF @id IS NULL THEN
14.RETURN NULL;
15.END IF;
16. 
17.LOOP
18.SELECT  MIN(id)
19.INTO    @id
20.FROM    t_hierarchy
21.WHERE   parent = _parent
22.AND id > _id;
23.IF @id IS NOT NULL OR _parent = @start_with THEN
24.SET @level = @level + 1;
25.RETURN @id;
26.END IF;
27.SET @level := @level - 1;
28.SELECT  id, parent
29.INTO    _id, _parent
30.FROM    t_hierarchy
31.WHERE   id = _parent;
32.END LOOP;
33.END

As you can see, this function takes a value as an input agrument, but doesn’t actually use it. This is becauseMySQL ignores NON DETERMINISTIC clause in the function definition, caches it’s return value and doesn’t actually call it if it’s called with the same arguments.

To avoid this, we need some non-repeating value, that is id.

We use this function in a query as following:

01.SELECT  CONCAT(REPEAT('    'level - 1), CAST(hi.id AS CHAR)) AS treeitem, parent, level
02.FROM    (
03.SELECT  hierarchy_connect_by_parent_eq_prior_id(id) AS id, @level AS level
04.FROM    (
05.SELECT  @start_with := 0,
06.@id := @start_with,
07.@level := 0
08.) vars, t_hierarchy
09.WHERE   @id IS NOT NULL
10.) ho
11.JOIN    t_hierarchy hi
12.ON      hi.id = ho.id

In the first subquery, we initialize the variables and set our root item.

Note that it’s unadvisable to use NULL as a root, because it’s not comparable with an equality condition and therefore cannot be easily searched for without syntax change.

We use a 0 instead, because real id‘s traditionally start with 1.

We check for @id IS NOT NULL in the WHERE clause to optimize the query. Our function is written so that@id, being once set to NULL, will always remain NULL, and we can skip remaining rows.

For each row of our rowset (which is used only as an iterator loop), the function returns next id in a tree. We then join another instance of t_hierarchy on this id.

As a result of the query, we get:

treeitemparentlevel
101
212
723
3274
157325
7821576
39077827
1953239078
1953339078
1953439078
1953539078
1953639078
39087827
1953739088
1953839088
97651195308
1953139067
97652195318
97653195318
97654195318
97655195318
97656195318
97656 rows fetched in 1,1108s (13,7909s)

To be continued.

Written by Quassnoi

March 17th, 2009 at 11:00 pm

Posted in MySQL

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多