我有这样的桌子
表-A
Conversion_logic Output_param
func(a,b) c
func(d) e
func(c) d
func(e) f
这里的行描述了func(a,b)给了我“c”,现在这个“c”被应用为func(c)并给了我“d”,现在这个“d”被应用为func(d)并给了我“e”,现在这个“e”被应用为 func(e) 这给了我“f”
所以我想要这样的输出
1) That row should be the first row whose output has no dependency.
2) From there it should follow parent child relation
Conversion_logic Output_param
func(e) f
func(d) e
func(c) d
func(a,b) c