ClickHouse/tests/queries/0_stateless/01145_with_fill_const.sql
2020-06-16 05:56:16 +03:00

7 lines
201 B
SQL

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;