我在sql中有这个表:
TopicID Code Name ParentID
------- ---- ---- --------
1 001 Parent1 0
2 001 Childp1 1
3 002 Parent2 0
4 001 Childp2 3
5 001 Childp21 4
.
.
etc
现在我想 1.get sql select which retrives me last node?(我通过以下行做了)
select * from accounting.topics where topicid not in(select parentid from accounting.topics)
结果是:
TopicID Code Name ParentID | newcolumn
------- ---- ---- -------- | ---------
2 001 Childp1 1 | 001001
5 001 Childp21 4 | 002001001
2.重要的是在上面的结果中显示从每行的第一个节点到最后一个节点的代码连接,就像上面的newcolumn,实际上我不能产生newcolumn?*请注意,节点级别是无限的。