使用生成的 id 将新行插入到 apache derby 中的单列表中

发布于 2024-10-17 04:03:39 字数 276 浏览 3 评论 0原文

我有下表:

create table indices (
id int primary key generated by default as identity
);

如何插入新行?

我已经尝试过一些我发现的事情,例如:

insert into indices values (null);
insert into indices default values;

但这对德比战不起作用。

I have the following table:

create table indices (
id int primary key generated by default as identity
);

how do I insert a new row?

I have already tried several things I have found, like:

insert into indices values (null);
insert into indices default values;

however that didn't work with derby.

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

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

发布评论

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

评论(2

我的痛♀有谁懂 2024-10-24 04:03:39

尝试“插入索引值(默认)”

Try "insert into indices values (default)"

迷迭香的记忆 2024-10-24 04:03:39

您需要一个插入。您有 id,它是一个 identity,这意味着插入新行时它已经有一个值。添加新的,然后在insert 语句中填充该

You need a column to insert into. You have id which is an identity, which means it will already have a value when a new row is inserted. Add a new column and then fill that column in your insert statement.

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