php:ingres 相当于 mysql_insert_id()

发布于 2024-11-29 06:55:16 字数 124 浏览 0 评论 0原文

我必须与 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 技术交流群。

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

发布评论

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

评论(1

终止放荡 2024-12-06 06:55:16

last_identity() 函数将为您提供最后生成的表序列号,例如:

SELECT last_identity() FROM t1

据我了解,需要使用 CREATE TABLE 创建序列号,使用以下语法:

colname integer generated always as identity

例如:

CREATE TABLE t1 ( 
    idx integer generated always as identity,
    sometext varchar(100) not null
)

请参阅 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.:

SELECT last_identity() FROM t1

From what I understand the sequence number needs to be created, using CREATE TABLE using the following syntax:

colname integer generated always as identity

e.g.:

CREATE TABLE t1 ( 
    idx integer generated always as identity,
    sometext varchar(100) not null
)

See http://community.ingres.com/wiki/Using_Ingres_Identity_Columns for some additional notes on using identity columns.

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