Fix var name, closes #1513

This commit is contained in:
Mine Çetinkaya-Rundel
2023-11-09 00:24:28 -05:00
parent c5965e9f1a
commit 00e750f6e4

View File

@@ -548,7 +548,7 @@ The easiest way to see the full set of what's currently available is to visit th
FROM flights
WHERE dep_delay < arr_delay
SELECT *, distance / (airtime / 60) AS speed
SELECT *, distance / (air_time / 60) AS speed
FROM flights
```