H harrylifeng Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-09 #1 请问诸位,有没有什么方法能够在选出的记录前面加上序号? 如选出五条记录,在记录之前就有一个标号1,2,3,4,5.。 多谢。
H harrylifeng Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-11 #3 to tseug 请问在DB2下的递归SQL怎么做? 多谢了。
T tseug Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-11 #5 大概是这样,不过我手头没有DB2没法试验... with temp(RecNo) as ( select 1 from aaa union all select max(RecNo)+1 from temp ) select RecNo from temp
大概是这样,不过我手头没有DB2没法试验... with temp(RecNo) as ( select 1 from aaa union all select max(RecNo)+1 from temp ) select RecNo from temp
L lixuejian Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-11 #6 记得 ORACLE 7 中 SELECT 有伪列可以解决这个问题!