The trick is to join the table to itself.
Let's assume that your table is named Item and has the following column names:
Desc, PK, FK
Your SQL would look something like this:
SELECT Item.Desc, Item_1.Desc, Item_2.Desc
FROM (Item LEFT JOIN Item AS Item_1 ON Item.PK = Item_1.FK)
LEFT JOIN...