The question might sound a little weird. I have a Pages table as follows:
Id PageName Parent Predecessor
1 Home null null
2 About null 1
3 Contact me 2 null
4 My Resume 2 3
So it is basically like:
Home
About
|--Contact me
|--My resume
I want to write a select query that will first "group" pages based on their Parent then sort in those groups based on the value of their Predecessor. That is preserve the tree structure of those pages. Needless to say, Parent and Predecessor are foreign keys pointing to Id in the same Pages table.
Any help is greatly appreciated :-) Thanks in advance
Edit 1: I'm using SQL Server
Edit 2: Here's an actual picture:
It should show "Contact Me" below About (as the Parent field indicates)
NOTE: In this sample, Order is not a foreign key. It's just an int which is used for sorting.