Update order-by.md

INTERPOLATE fix
This commit is contained in:
Yakov Olkhovskiy 2022-03-18 23:40:09 -04:00 committed by Yakov Olkhovskiy
parent b01f965f31
commit 5ae6f800c6

View File

@ -489,7 +489,7 @@ Example of a query without `INTERPOLATE`:
``` sql
SELECT n, source, inter FROM (
SELECT toFloat32(number % 10) AS n, 'original' AS source, n as inter
SELECT toFloat32(number % 10) AS n, 'original' AS source, number as inter
FROM numbers(10) WHERE number % 3 = 1
) ORDER BY n WITH FILL FROM 0 TO 5.51 STEP 0.5;
```