Transitive Graph in SQL

前端 未结 0 1160
庸人自扰
庸人自扰 2021-02-12 17:12

I am trying to make a graph transitive using SQL.

I do not see, why this should not work:

with recursive recursive_table(from, to) as (
    SELECT * FROM G         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题