sql >> Database >  >> RDS >> Sqlserver

Broodkruimels zoeken voor geneste sets

hier is de SQL die voor mij werkte om het pad "broodkruimel" vanaf elk punt in de boom te krijgen. Ik hoop dat het helpt.

SELECT ancestor.id, ancestor.title, ancestor.alias 
FROM `categories` child, `categories` ancestor 
WHERE child.lft >= ancestor.lft AND child.lft <= ancestor.rgt 
AND child.id = MY_CURRENT_ID 
ORDER BY ancestor.lft

Kath



  1. PGEast, Hardware Benchmarking en de PG Performance Farm

  2. MS SQL Server kruistabelbeperking

  3. Hoe schakel ik autocommit uit voor een MySQL-client?

  4. Wat is er mis met Cursors?