Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to ORDER my all categories and sub-categories in a hierarchy:

The main point is how to get them from MySQL ORDERLY (using POSITION field)

  • Cat A --> position 10
    • Sub-Cat 1 --> position 10
    • Sub_Sub_Cat 1 --> position 20
      • Sub_Sub_Cat 2 --> position 10
    • Sub_Cat 2 --> position 30
  • Cat B --> position 20
  • Cat C --> position 30

MySQL code:

 CREATE TABLE IF NOT EXISTS `categories` (
   `category_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
   `position` smallint(5) unsigned,
   `parent_id` mediumint(8) unsigned NOT NULL DEFAULT '0'
  PRIMARY KEY (`category_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 ;
share|improve this question

1 Answer

up vote 5 down vote accepted

You want to traverse the tree using SQL? That is not possible with the adjacency list model, you have to use the nested sets model. Then you can just ORDER BY left to get the whole tree in the correct order.

share|improve this answer
Wow, that is incredibly cool. I can't believe I never saw this before! This does explain the strange 'lft' and 'rgt' fields in some databases though ;) – Spiny Norman Dec 29 '10 at 14:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.