Condition Where sur une arboresence

Résolu
Bonjour,
pour restreindre aux repertoires
where 'Path' = (SELECT 'path' FROM 'theme' where 'id'=282)
pour les repertoires fils, je pensais à ça mais non
where 'Path' > (SELECT 'path' FROM 'theme' where 'id'=282)+'/'
ou
where 'Path' Like '(SELECT 'path' FROM 'theme' where 'id'=282)%'

merci de votre lecture ou aide .

2 réponses

  1. where 'Path' > (SELECT concat('path','/') FROM 'theme' where 'id'=282)Ok pour la concatenation SELECT concat('path','/') FROM 'theme' where 'id'=282
    mais pas pour l operande >
    0
    1. where 'Path' >= any (SELECT 'path' FROM 'theme' where 'id'=97) and 'Path Recadre' < any (SELECT concat('path','/Z') FROM 'theme' where 'id'=97)
      0