SQL 插入后 Sybase Advantage 新 AutoInc
有人知道如何检索 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
标量函数
LastAutoinc
可以高效地检索它:The scalar function
LastAutoinc
can retrieve it efficiently:全局变量 @@identity 标识当前会话插入 IDENTITY 列的最后一个值。
您可以执行以下操作:
为了检索新密钥。
The global variable @@identity identifies the last value inserted into an IDENTITY column by the current session.
You may do the following:
in order to retrieve the new key.