跳过至主要内容

Date

日期。存储在两个字节中,表示自 1970-01-01 以来的天数(无符号)。允许存储从 Unix 纪元开始后的值到编译阶段定义的常量上界(目前,此值到 2149 年,但最终完全支持的年份为 2148 年)。

支持的值范围[1970-01-01, 2149-06-06].

日期值存储时不带时区。

示例

创建一个包含 Date 类型列的表并向其中插入数据

CREATE TABLE dt
(
`timestamp` Date,
`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 dt VALUES ('2019-01-01', 1), (17897, 2), (1546300800, 3);

SELECT * FROM dt;
┌──timestamp─┬─event_id─┐
│ 2019-01-01 │ 1 │
│ 2019-01-01 │ 2 │
│ 2019-01-01 │ 3 │
└────────────┴──────────┘

另请参阅