mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
8 lines
390 B
SQL
8 lines
390 B
SQL
select toDateTime64(toDateTime(1, 'Asia/Istanbul'), 2);
|
|
select toDateTime64(toDate(1), 2) FORMAT Null; -- Unknown timezone
|
|
select toDateTime64(toDateTime(1), 2) FORMAT Null; -- Unknown timezone
|
|
select toDateTime64(toDateTime(1), 2, 'Asia/Istanbul');
|
|
select toDateTime64(toDate(1), 2, 'Asia/Istanbul');
|
|
select toDateTime64(toDateTime(1), 2, 'GMT');
|
|
select toDateTime64(toDate(1), 2, 'GMT');
|