我有一个表,其中包含如下所示的分层数据:
**childtype chidvalue parenttype parentvalue**
1001, child1, 1000, testParent
1001, child2, 1000, testParent
1002, child3, 1000, testParent
1003, child4, 1002, child3
1004, child5, 1003, child4
输入将是父值。例如“testParent”,它必须获取包含“testParent”子值的所有记录 recursivley。以前不知道子级别的数量。我必须通过使用单个 SQL 查询来实现这一点。任何人都可以帮忙吗
提前致谢