我有一张表,其中包含以下给出的分层数据:
**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查询来实现此目的。任何人都可以帮忙吗
提前致谢