blob: 67518abf0edbbcf4238f50ba0ce7ce64da8fbdc3 [file]
WITH
x
AS (SELECT
a1
FROM
t1)
SELECT x.a1
FROM x
WHERE x.a1 IS NOT NULL
ORDER BY
x.a1 desc;