sql >> Database >  >> RDS >> Sqlserver

SQL:Vind ontbrekende mappenpaden in het splitsen van hiërarchieën

Met dit toegevoegde pad (11,2,'U\V\Z\L\O\Q\R\S\T') om meerdere ontbrekende mappen in een pad te tonen:

with cte as (
select BaseDirID, DisplayPath = left(DisplayPath,len(DisplayPath)-charindex('\',reverse(DisplayPath)))
from t
where DirLevel > 1
  and not exists (
  select 1 
  from t i
  where t.BaseDirId = i.BaseDirId
    and i.DisplayPath = left(t.DisplayPath,len(t.DisplayPath)-charindex('\',reverse(t.DisplayPath)))
    )
union all 
select BaseDirID, DisplayPath = left(DisplayPath,len(DisplayPath)-charindex('\',reverse(DisplayPath)))
from cte t
where not exists (
  select 1 
  from t i
  where t.BaseDirId = i.BaseDirId
    and i.DisplayPath = left(t.DisplayPath,len(t.DisplayPath)-charindex('\',reverse(t.DisplayPath)))                                                   
    )
)
select distinct * 
from cte

rextester-demo:http://rextester.com/CEVGZ96613

retourneert:

+-----------+-----------------+
| BaseDirID |   DisplayPath   |
+-----------+-----------------+
|         1 | A\B             |
|         1 | A\B\C\D         |
|         1 | A\B\F\G         |
|         2 | U\V             |
|         2 | U\V\M\L         |
|         2 | U\V\W\X         |
|         2 | U\V\Z           |
|         2 | U\V\Z\L         |
|         2 | U\V\Z\L\O       |
|         2 | U\V\Z\L\O\Q     |
|         2 | U\V\Z\L\O\Q\R   |
|         2 | U\V\Z\L\O\Q\R\S |
+-----------+-----------------+



  1. Laravel 5 PDOException kon stuurprogramma niet vinden

  2. Hoe twee kolommen van het type timestamp en integer toe te voegen

  3. Een login toewijzen aan een gebruiker die is aangemaakt zonder login (SQL Server)

  4. Hoe records in te voegen in variabelen van cte in orakel?