mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
5 lines
290 B
MySQL
5 lines
290 B
MySQL
|
SELECT toNullable('2023-02-09'::Date + number * 10) AS d FROM numbers(2) ORDER BY d WITH FILL;
|
||
|
SELECT '---';
|
||
|
SELECT number % 2 ? NULL : toNullable('2023-02-09'::Date + number) AS d FROM numbers(5) ORDER BY d ASC NULLS LAST WITH FILL;
|
||
|
-- TODO: NULLS FIRST does not work correctly with FILL.
|