select '/' || nvl(11.name, '') || '/' || nvl(12.name, '') || '/' ||
       nvl(13.name, '') || '/' || nvl(14.name, '')
  from direct 11, direct 12, direct 13, direct 14
 where 11.id = 12.parentid(+)
   and 12.id = 13.parentid(+)
   and 13.id = 14.parentid(+)
   and 11.id = 1
 order by 11.name, 12.name, 13.name, 14.name
大家帮忙看看这个sql错误