sql >> Databasteknik >  >> RDS >> Sqlserver

SQL-fråga för föräldrabarnsrelation

with [CTE] as (
    select * from [TheTable] c where c.[ParentId] = 1
    union all
    select * from [CTE] p, [TheTable] c where c.[ParentId] = p.[NodeId]
)
select * from [CTE]


  1. fullCalendar-händelser post-metoden till MySQL

  2. MySQL SELECT WHERE datetime matchar dag (och inte nödvändigtvis tid)

  3. Installera Oracle 12c Enterprise Edition på Windows 7

  4. Mariadb docker-container Kan inte ansluta till MySQL-server på värd (111 Anslutning nekad) med Python