php:ingres 相当于 mysql_insert_id()
我必须与 Ingres 数据库进行一些 PHP 交互。我需要获取我在数据库中插入的最后一个条目的 ID。
我应该如何进行?我不是 ingres 专家,但我想还有自动递增的 ID/序列/...?
非常感谢
I've to make some PHP interaction with an Ingres database. I need to get the ID of the last entry I inserted in the database.
How should I proceed? I'm not an ingres expert, but I suppose there is also auto-incremented ID/Sequences/...?
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
last_identity()
函数将为您提供最后生成的表序列号,例如:据我了解,需要使用
CREATE TABLE
创建序列号,使用以下语法:例如:
请参阅 http://community.ingres.com/wiki/Using_Ingres_Identity_Columns 了解有关使用标识列的一些附加说明。
The
last_identity()
function will give you the last generated sequence number for a table, e.g.:From what I understand the sequence number needs to be created, using
CREATE TABLE
using the following syntax:e.g.:
See http://community.ingres.com/wiki/Using_Ingres_Identity_Columns for some additional notes on using identity columns.