Tagged Questions
The nested-set-model tag has no wiki summary.
4
votes
5answers
3k views
Nested Set Model: Is there a simple way to query the children of a node?
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 ...
3
votes
5answers
107 views
jquery add new li to nested set model
What is the best way to insert a new li element into a specific position of a nested set model?
For example, the following list:
<ol class="nested">
<li id="list_1"></li>
...
3
votes
4answers
939 views
Nested Set Model Php library
Hi I need to use the nested set model to mange product categories on my site. Does anyoune know of some good pre-built PHP libraries for handling nested sets in MySQL?
2
votes
1answer
1k views
Adjacency list vs. nested set model
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 ...
1
vote
1answer
40 views
jOOQ complex update - how to lock the table?
here is a "add node" SQL query for nested set model
LOCK TABLE mytestdb.tbltree WRITE;
SELECT @myRight := rgt FROM mytestdb.tbltree
WHERE name = 'apples';
UPDATE mytestdb.tbltree SET rgt = rgt + 2 ...
1
vote
0answers
104 views
nested set model performance - denormalize?
I am trying to optimize an application where 2 main tables are used
1) category (~17k rows)
uses nested set model for hierarchy (category_id,category_name, lft, rgt)
2) product (~500k rows)
...
1
vote
3answers
384 views
Sorting nested set by name while keep depth integrity
I'm using the nested set model that'll later be used to build a sitemap for my web site. This is my table structure.
create table departments (
id int identity(0, 1) primary key
, lft int
...
0
votes
0answers
89 views
Nested Set Model vs Materialized Path in MySQL
Just getting started on my first big(ish) project using mysql with quite a limited amount of technical knowledge. I'm faced with what seems to be the very common question of how to represent my tree ...
0
votes
1answer
115 views
EF Code-First and nested sets
I would like to create a nested set model inside my database. However, I have a problem, 'cause I don't know how to start the implementation using Entity Framework Code-First.
Lets say I have such ...
0
votes
2answers
298 views
Ordering siblings in nested set model
I'm facing a problem with the nested set model, with MySQL.
I can insert, delete, move subtrees to another parent, everything works fine.
But I can't figure out how to order siblings. For example, I ...
0
votes
1answer
60 views
SQL query for inserting a new node in a table using the nested set model fails to execute
I'm currently working with the nested set model and i've read the article from the MySQL site (Managing Hierarchical Data in MySQL).
I got the following query directly from the article:
LOCK TABLE ...
0
votes
0answers
113 views
Rails | Adding already existing instance of one model to another nested model without duplicating mysql record
There's two habtm models associated through the join table.
class Post < ActiveRecord::Base
has_and_belongs_to_many :words, :select => 'distinct words.*'
accepts_nested_attributes_for ...
0
votes
1answer
456 views
Sorting items in MPTT result set?
I'm using the MPTT (modified preorder tree traversal) model to store hierarchical data in my MySQL table. (MPTT model: another description is nested set model.). My question is this: has anyone ...