mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
7 lines
201 B
MySQL
7 lines
201 B
MySQL
|
WITH toDateTime('2020-06-16 03:00:00') AS date_time
|
||
|
SELECT date_time ORDER BY date_time ASC
|
||
|
WITH FILL
|
||
|
FROM toDateTime('2020-06-16 00:00:00')
|
||
|
TO toDateTime('2020-06-16 10:00:00')
|
||
|
STEP 1800;
|