nested-set-model Questions

2

Solved

I have been looking into Adjacency List and Nested Set Model to find the optimal tree solution. Up until now I thought one of the main advantages of Nested Set Model was that I could use one SQL q...
Taconite asked 13/11, 2010 at 17:39

1

Solved

There are two ways to work with hierarchy data in MySQL: Adjacency List Model Nested Set Model A major problem of the Adjacency List Model is that we need to run one query for each node to get ...
Freiman asked 26/7, 2015 at 20:17

6

Solved

I've been using the crap out of the Nested Set Model lately. I have enjoyed designing queries for just about every useful operation and view. One thing I'm stuck on is how to select the immediate c...
Janniejanos asked 18/3, 2009 at 18:18

5

Solved

Let's dig in the main problem right away, I have the input like this $category = array( 'A' => array('left' => 1, 'right' => 8), 'B' => array('left' => 2, 'right' => 3), 'C' =...
Arrowy asked 8/6, 2013 at 12:27

1

Solved

I want a simple predicate that returns me all the groups which have mode = 0 and the mode of the enrollments in the group = 0 To be precise i need a predicate to access the nested object properti...
1

© 2022 - 2024 — McMap. All rights reserved.