mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
6 lines
253 B
SQL
6 lines
253 B
SQL
-- { echo }
|
|
SELECT toString(toDateTime('-922337203.6854775808', 1));
|
|
SELECT toString(toDateTime('9922337203.6854775808', 1));
|
|
SELECT toDateTime64(CAST('10000000000.1' AS Decimal64(1)), 1);
|
|
SELECT toDateTime64(CAST('-10000000000.1' AS Decimal64(1)), 1);
|