Mysql
 sql >> Database >  >> RDS >> Mysql

Ottenere i dati della gerarchia da tabelle autoreferenziali

Se il database è SQL 2005 / 2008 allora...

Il modo più semplice per ottenerlo è utilizzare un CTE (Common Table Expression) progettato per essere ricorsivo.

 WITH myCTE (Item_id, Depth)
 AS
 (
    Select Item_ID, 0 as Depth From yourTable where Item_Parent=0
    Union ALL
    Select yourTable.Item_ID, Depth + 1 
    From yourTable 
    inner join myCte on yourTable.item_Parent = myCte.Item_Id
 )

 Select Item_id, Depth from myCTE

L'output è il seguente:

Item_Id  Depth
    1   0
    2   0
    3   1
    4   1
    5   2

Da lì puoi formattarlo come desideri.