show/hide this revision's text 2 Edited for clarity based on comments

It's very easy to keep this field updated by using a trigger on the table. (Apologies for terminology but I have always done this with SQL Server). Every time you add or delete a record, or update the parent_id field, you just need to update the upchain field on that part of the recordtree. That's a trivial job because you just take the upchain of the parent record and append the id of the current record. All child records are easily identified using LIKE to check for records with the starting string in their upchain.

When you want to select a complete branch in the tree it's trivialbecause . Suppose you want the branch under node 1. Node 1 has an upchain '1:' so you know that any node in the branch of the tree under that node must have an upchain starting '1:...'. So you just to do this:

SELECT *WHERE upchain LIKE '2:%'

or

This is both extremely fast (index the upchain field of course) and course). As a bonus it also makes a lot of activities extremely simple, such as finding partial trees, peerslevel within the tree, etc.

I've used this in applications that track large employee reporting hierarchies but you can use it for pretty much any tree structures structure (parts breakdown, etc.)

Notes (for anyone who's interested):

  • I haven't given a step-by-step of the SQL code but once you get the principle, it's pretty simple to implement. I'm not a great programmer so I'm speaking from experience.
  • If you already have data in the table you need to do a one time update to get the upchains synchronised initially. Again, this isn't difficult as the code is very similar to the UPDATE code in the triggers.
  • This technique is also a good way to identify circular references which can otherwise be tricky to spot.
  • show/hide this revision's text 1

    Pulling this result in recursively is tricky (although possible). However, it's typically not very efficient and there is a much better way to solve this problem.

    Basically, you augment the table with an extra column which traces the tree to the top - I'll call it the "Upchain". It's just a long string that looks something like this:

    name | id | parent_id | upchain
    root1 | 1 | NULL | 1:
    root2 | 2 | NULL | 2:
    root1sub1 | 3 | 1 | 1:3:
    root1sub2 | 4 | 1 | 1:4:
    root2sub1 | 5 | 2 | 2:5:
    root2sub2 | 6 | 2 | 2:6:
    root1sub1sub1 | 7 | 3 | 1:3:7:
    

    It's very easy to keep this field updated by using a trigger on the table. (Apologies for terminology but I have always done this with SQL Server). Every time you add or delete a record, or update the parent_id field, you just need to update the upchain field on the record. That's a trivial job because you just take the upchain of the parent record and append the id of the current record.

    What you're doing effectively is trading a bit of extra write activity for a big saving when you come to read the data.

    When you want to select a complete branch in the tree it's trivial because you just to this:

    SELECT *
    FROM table
    WHERE upchain LIKE '2:%'
    

    or

    SELECT *
    FROM table
    WHERE upchain LIKE '1:3:%'
    

    This is both extremely fast (index the upchain field of course) and makes a lot of activities extremely simple, such as finding partial trees, peers, etc.

    I've used this in applications that track large employee reporting hierarchies but you can use it for pretty much any tree structures (parts breakdown, etc.)