GBase 8s
运维管理
文章

gbase8关于BIGINT

发表于2025-11-03 20:37:2021次浏览1个评论

整数类型。 BIGINT 范围是-9223372036854775806 到 9223372036854775806。 BIGINT 占用 8 个字节。
 

示例中用到的表及数据: DROP TABLE IF EXISTS products; CREATE TABLE products(productnum BIGINT); INSERT INTO products(productnum) VALUES(100); gbase> SELECT productnum FROM products; +------------+ | productnum | +------------+ | 100 | +------------+ 1 row in set

评论

登录后才可以发表评论
用户头像
柒柒天晴发表于 2个月前
厉害了