Date32
一个日期。支持与 DateTime64 相同的日期范围。在原生字节序中以有符号的 32 位整数存储,其值表示自 1970-01-01 以来的天数(0 代表 1970-01-01,负值代表 1970 年之前的日期)。
示例
创建一个包含 Date32
类型列的表并向其中插入数据
CREATE TABLE dt32
(
`timestamp` Date32,
`event_id` UInt8
)
ENGINE = TinyLog;
-- Parse Date
-- - from string,
-- - from 'small' integer interpreted as number of days since 1970-01-01, and
-- - from 'big' integer interpreted as number of seconds since 1970-01-01.
INSERT INTO dt32 VALUES ('2100-01-01', 1), (47482, 2), (4102444800, 3);
SELECT * FROM dt32;
┌──timestamp─┬─event_id─┐
│ 2100-01-01 │ 1 │
│ 2100-01-01 │ 2 │
└────────────┴──────────┘
另请参阅