Derby 数据库的 SQL 语句错误

发布于 2024-09-28 20:14:44 字数 276 浏览 2 评论 0原文

我在尝试执行这段 sql 代码时遇到错误...我得到的错误是:

Encountered "(" at line 1, column 45

这段代码是:

ALTER TABLE APP.RESPOSTAS ADD coluna" + (numColumns + 1) + " INTEGER(1) AFTER coluna" + numColumns;

任何人都可以帮助我吗?

谢谢大家!

I'm havin an error while trying to execute this piece of sql code... The error I'm getting is:

Encountered "(" at line 1, column 45

The piece of code is:

ALTER TABLE APP.RESPOSTAS ADD coluna" + (numColumns + 1) + " INTEGER(1) AFTER coluna" + numColumns;

Can anyone help me?

Thank you all!

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

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

发布评论

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

评论(1

无边思念无边月 2024-10-05 20:14:44

根据 INTEGER 的德比详细信息,您不知道那里不需要(1)。

ALTER TABLE APP.RESPOSTAS ADD coluna" + (numColumns + 1) + " INTEGER 

应该工作吗?

编辑以删除 AFTER 部分,因为 derby 看起来也不支持该部分。
以下是 ALTER TABLE 的 derby 详细信息

According to The derby details for INTEGER you don't need the (1) in there.

ALTER TABLE APP.RESPOSTAS ADD coluna" + (numColumns + 1) + " INTEGER 

should work?

edited to remove the AFTER section as it doesn't look like derby supports that either.
here are the derby details for ALTER TABLE

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