mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
|
-- { echo }
|
||
|
SELECT CAST(1111111111.222 AS DateTime64(3));
|
||
|
2005-03-18 04:58:31.222
|
||
|
SELECT toDateTime(1111111111.222, 3);
|
||
|
2005-03-18 04:58:31.222
|
||
|
SELECT toDateTime64(1111111111.222, 3);
|
||
|
2005-03-18 04:58:31.222
|