Sqlserver
 sql >> Teknologi Basis Data >  >> RDS >> Sqlserver

Kueri rekursif SQL yang mendapatkan semua leluhur suatu item

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. Konversi 'waktu' menjadi 'datetimeoffset' di SQL Server (Contoh T-SQL)

  2. Hapus titik dan koma dari nilai kolom

  3. 3 Digit kode mata uang ke simbol mata uang

  4. Kembalikan jumlah baris yang terpengaruh oleh pernyataan UPDATE

  5. Cara mencari string di database SQL Server