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 children (and only the children, not further descendants!) of a node.
To be honest, I do know of a way – but it involves unmanageable amounts of SQL. I’m sure there is a more straightforward solution.
Did you read the article you posted? It’s under the heading ‘Find the Immediate Subordinates of a Node’
However, what I do (this is cheating) is I combined the nested set with adjacency lists — I embed a ‘parent_id’ in the table, so I can easily ask for the children of a node.