SQL 插入后 Sybase Advantage 新 AutoInc

发布于 2024-12-14 11:03:26 字数 185 浏览 5 评论 0原文

有人知道如何检索 ODBC INSERT 之后写入的新 AutoInc 吗? 是否有一个我可以像 SQL Server 一样访问的变量? 现在,我正在使用 :

SELECT MAX(myautoincfield) AS mylastkey FROM anytable 

来检索我的新密钥。

Anyone knows how to retrieve a new AutoInc that gets written after an ODBC INSERT?
Is there a variable I have access to just like SQL Server?
Right now, I'm using :

SELECT MAX(myautoincfield) AS mylastkey FROM anytable 

in order to retrieve my new key.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

硬不硬你别怂 2024-12-21 11:03:26

标量函数 LastAutoinc 可以高效地检索它:

select LastAutoinc(statement) as mylastkey from system.iota;

The scalar function LastAutoinc can retrieve it efficiently:

select LastAutoinc(statement) as mylastkey from system.iota;
口干舌燥 2024-12-21 11:03:26

全局变量 @@identity 标识当前会话插入 IDENTITY 列的最后一个值。

您可以执行以下操作:

select @@identity

为了检索新密钥。

The global variable @@identity identifies the last value inserted into an IDENTITY column by the current session.

You may do the following:

select @@identity

in order to retrieve the new key.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文