ClickHouse/tests/queries/0_stateless/02019_multiple_weird_with_fill.sql

15 lines
175 B
MySQL
Raw Normal View History

2021-09-29 14:43:35 +00:00
SELECT
x,
-x,
y
FROM
(
SELECT
5 AS x,
'Hello' AS y
)
ORDER BY
x ASC WITH FILL FROM 3 TO 7,
y ASC,
-x ASC WITH FILL FROM -10 TO -1;