Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Rekurencyjne zapytanie SQL, które pobiera wszystkich przodków elementu

with name_tree as (
   select id, parent_id, name
   from the_unknown_table
   where id = 1 -- this is the starting point you want in your recursion
   union all
   select c.id, c.parent_id, c.name
   from the_unknown_table c
     join name_tree p on p.parent_id = c.id  -- this is the recursion
) 
select *
from name_tree
where id <> 1; -- exclude the starting point from the overall result

SQLFiddle:http://sqlfiddle.com/#!3/87d0c/1



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Aktywny wynik nie zawiera pól wykorzystujących PDO z MS SQL

  2. Podziel zakres dat na jeden wiersz na miesiąc na serwerze sql

  3. Wartość kolumny tożsamości nagle skacze do 1001 na serwerze sql

  4. Czy można ostatecznie określić, czy polecenie DML zostało wydane z procedury składowanej?

  5. Wyzwalacz SQL Server:zrozumienie i alternatywy