找不到类型“bigint”;在 Sybase ASE 12.5.4 中
Sybase ASE 12.5.4 支持 bigint 吗?
如果没有,Sybase ASE 12.5.4 中是否有与 bigint 相同的东西?
is bigint supported in Sybase ASE 12.5.4 ?
if not is there any equalent to bigint in Sybase ASE 12.5.4 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Bigint 未被添加,直到Sybase ASE 15。您将得到的最接近的是
NUMERIC(19,0)
将提供与 bigint 相同的范围,但可能占用更多空间。Bigint was not added until Sybase ASE 15. The closest to this you will get is
NUMERIC(19,0)
which will provide the same range as bigint but may take up more space.