如何从timesten DB中递归获取数据

时间:2013-06-06 09:54:59

标签: sql database recursive-query timesten

我有一张表,其中包含以下给出的分层数据:

**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查询来实现此目的。任何人都可以帮忙吗

提前致谢

0 个答案:

没有答案