我正在寻找使用以下查询来查找最后一个投标 ID。
FOR EACH tender-table NO-LOCK WHERE tender-table.kco = 1 BY tender-table.id:
DISPLAY tender-table.id.
END.
此查询查看所有投标 id 并按升序返回所有 id 的所有结果。我得到的结果是
1,035 1.036 ...... 1,060 1,061 1,062 1,063 1,064 1,065 1,066
FOR LAST tender-table NO-LOCK WHERE tender-table.kco = 1 BY tender-table.id:
DISPLAY tender-table.id.
END.
但是,当我使用此查询查找最后一个 id 时,我得到了结果,
1,061
当我应该看到结果 1,066 时。谁能建议为什么会这样?