自动增量语法错误
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sybase 文档不是很好,事实证明还有 Sybase ASA、他们购买的其他一些产品,以及大多数人认为是 Sybase 的 Sybase ASE(服务器企业版)。
对于ASE15,它不是自动增量,它是标识,它必须是数字,而不是整数
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