BIGINT
描述
8 字节有符号整数,范围 [-9223372036854775808, 9223372036854775807]。
示例
创建表时指定字段类型为 BIGINT。
CREATE TABLE bigIntDemo (
pk BIGINT(20) NOT NULL COMMENT ""
) ENGINE=OLAP
DUPLICATE KEY(pk)
COMMENT "OLAP"
DISTRIBUTED BY HASH(pk);
AI generated answers are based on docs and other sources. Please test answers in non-production environments.