iSeries DB2 - 有没有办法从插入语句中选择标识值?
我知道我们很少,我们这些可怜的人使用 iSeries for DB2/AS400,但我希望有人能回答这个简单的问题。 有没有办法从插入语句返回标识值而不使用两行 SQL? 我被迫在 C# 中使用内联 SQL 来执行插入,然后我需要使用为插入生成的标识来执行稍后的操作。 简而言之,我需要 iSeries DB2 相当于 Oracle 的“RETURNING”。 即,
INSERT INTO AwesomeTable (column1, column2, etc.)
VALUES (value1, value2, etc.)
RETURNING something;
有人吗? 提前致谢。
编辑:除非有人知道我可以在一个 IBM.Data.DB2.iSeries.iDB2Command (不是存储过程)中执行两行 SQL 的方法,否则我想在一行 SQL 中完成这一切
I know we're rare, us poor folk that are using iSeries for DB2/AS400, but I'm hoping someone can answer this simple question. Is there any way to return the identity value from an insert statement without using two lines of SQL? I'm being forced to use inline SQL in C# to perform an insert, and then I need to use the identity generated for the insert for something later on. Simply put, I need the iSeries DB2 equivalent of Oracle's "RETURNING." I.e.,
INSERT INTO AwesomeTable (column1, column2, etc.)
VALUES (value1, value2, etc.)
RETURNING something;
Anyone? Thanks in advance.
EDIT: Unless someone knows of a way I can execute two lines of SQL in one IBM.Data.DB2.iSeries.iDB2Command (not a stored proc), I would like to do this all in one line of SQL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定 iSeries,但以下内容适用于 db2v8.1:
考虑“ID”是您的身份列的名称。 以下 stmt 将返回新生成的 id(与 insert stmt 插入的 id 相同):
我在 publib 站点上找到的一些解释:(我用它作为参考来测试上面的查询)
希望这可以帮助 :)
I am not sure of iSeries, but the following worked on db2v8.1:
Consider 'ID' is the name of your identity column. The following stmt will return the newly generated id (the same one that gets inserted by the insert stmt):
Some explanation I found on the publib site: (I used it for reference to test my query above)
Hope this helps :)
您需要使用
IDENTITY_VAL_LOCAL
标量函数。 来自 IBM 文档:例子:
You need to use the
IDENTITY_VAL_LOCAL
scalar function. From the IBM documentation:Example:
这是一个示例:
// 注意自动增量字段所在的默认关键字。
// 并使用该函数返回最后一个标识列值。
// 注意:仅获取第一行。
Here's an example :
// Notice the default keyword where the auto increment field is.
// And using the function to return the last identity column value.
// Note: fetch first row only.