can't find the type 'bigint' in Sybase ASE 12.5.4
is bigint supported in Sybase ASE 12.5.4 ?
if开发者_如何学编程 not is there any equalent to bigint in Sybase ASE 12.5.4 ?
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.
精彩评论