自动增量语法错误

发布于 2024-10-05 05:14:10 字数 197 浏览 1 评论 0原文

Sybase 手册和大量示例声称我可以编写:

   create table run_log (
     run_id        integer not null default autoincrement
   );

但是 Sybase 15 说 default 上存在语法错误

The Sybase manual and plenty of examples claim I can write:

   create table run_log (
     run_id        integer not null default autoincrement
   );

But Sybase 15 says there is a syntax error on the default

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

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

发布评论

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

评论(1

尾戒 2024-10-12 05:14:14

Sybase 文档不是很好,事实证明还有 Sybase ASA、他们购买的其他一些产品,以及大多数人认为是 Sybase 的 Sybase ASE(服务器企业版)。

对于ASE15,它不是自动增量,它是标识,它必须是数字,而不是整数

create table run_log (
  runid    numeric(12,0) identity
)

Sybase documentation isn't great, and it turns out there's Sybase ASA, some other product they bought, and Sybase ASE (Server Enterprise) which is what most people would think of as Sybase.

For ASE15, it's not autoincrement, it's identity, which must be on numeric, not integer

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