Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能来自 Interbase 吗?例如在这个链接中。
您可以使用生成器。创造它
CREATE GENERATOR g_rowno;
然后像这样使用
SELECT GEN_ID(g_rowno, 1), field1, field2, ... FROM your_table
但它只有在没有同时执行相同查询的情况下才会起作用。
在 Firebird 中,您可以使用 EXECUTE BLOCK 构造来处理每一行并在将行号传递给客户端应用程序之前添加行号。