I am researching about hierarchical data (as a solution to generalize work orders) by using ms sql.
*
I am open to design change on my initial table and/or to add other tables.
*
Here is my data
ID ParentID Type Value
38 0 Num 327
39 38 Sector 21
40 38 Sector 22
43 40 Product NS
44 40 Product MS
50 40 Temp RAS
48 44 Quantity 60
47 43 Quantity 25
41 39 Product ARF
42 39 Product BRF
49 39 Temp RAS
51 39 Cible Acarien A.
46 42 Quantity 30
52 42 Cible Acarien B.
45 41 Quantity 20
I would like to transform it into :
Num Sector Product Quantity
327 21 ARF 20
327 21 BRF 30
327 22 NS 25
327 22 MS 60
[Result using Gurwinder's answear]
num sector product quantity
327 22 MS 60
327 22 NS 25
327 21 BRF 30
327 21 BRF Acarien B.
327 21 ARF 20
[Shungo's approach]
<root>
<row Num="327" Sector="s2" Temp="normal" />
<row Num="327" Sector="s2" Product="BRF" Qte="70" />
<row Num="327" Sector="s2" Product="ARF" Qte="45" />
<row Num="327" Sector="s1" Temp="normal" />
<row Num="327" Sector="s1" Cible="Acarien a." />
<row Num="327" Sector="s1" Product="NS" Qte="35" />
<row Num="327" Sector="s1" Product="NS" Cible="Acarien b." />
<row Num="327" Sector="s1" Product="MS" Qte="60" />
</root>
Thank's a lot for your time guys.
What about this trick?
The result
This XML is easy to query... The deepest Level (here I took HLevel=3) can be found generically - but you'd need to provide more details...
UPDATE
The following will not use a given depth as filter but a query to check, if a node is a leaf-node
I added one more row at the end
The result
UPDATE 2: Using your real data
As you've found out alread, your question was quite a mess... Don't know what you really need, but if I run your real data through this query I'd get this:
The result