Nikita Mikhaylov 2024-04-02 16:06:02 +00:00
parent d650476400
commit 3d9a6e9b8e
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
-- https://github.com/ClickHouse/ClickHouse/issues/48308
DROP TABLE IF EXISTS 03038_table;
CREATE TABLE 03038_table
(
`time` DateTime
)
ENGINE = MergeTree
ORDER BY time;
SELECT *
FROM
(
SELECT
toUInt64(time) AS time,
toHour(03038_table.time)
FROM 03038_table
)
ORDER BY time ASC;
WITH subquery AS (
SELECT
toUInt64(time) AS time,
toHour(03038_table.time)
FROM 03038_table
)
SELECT *
FROM subquery
ORDER BY subquery.time ASC;
SELECT *
FROM
(
SELECT
toUInt64(time) AS time,
toHour(03038_table.time) AS hour
FROM 03038_table
)
ORDER BY time ASC, hour;
DROP TABLE IF EXISTS 03038_table;