mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
7 lines
236 B
SQL
7 lines
236 B
SQL
-- Tags: no-backward-compatibility-check
|
|
|
|
SELECT toDate('2022-02-01') AS d1
|
|
FROM numbers(18) AS number
|
|
ORDER BY d1 ASC WITH FILL FROM toDateTime('2022-02-01') TO toDateTime('2022-07-01') STEP toIntervalMonth(1); -- { serverError 475 }
|
|
|