Is it possible to sort sql data in a hierarchy by it's hierarchy id, and then for each level sort it say alphabetically?
So say we have an Employees Table that lists the organizational hierarchy based on the Employees ID
You have Bob (5) who has Phil (17) and Charlie(28) Reporting to him, and Josie (6) has Tyler (15) and Mike (56) Reporting to her.
If you sort it by HierarchyID it will look like:
Bob (/5/)
--Phil (/5/17/)
--Charlie (/5/28/)
Josie (/6/)
--Tyler (/6/15/)
--Mike (/6/56/)
But It would probably make more sense to have it look like
Bob
--Charlie
--Phil
Josie
--Mike
--Tyler
Is this possible without it getting too convoluted?
Unless I'm misunderstanding something, you can just add a secondary sort field to the
ORDER BY
clause. For example: