3 lines
72 B
MySQL
3 lines
72 B
MySQL
|
SELECT MAX(arr_delay)/60
|
||
|
FROM Flight_delays
|
||
|
WHERE arr_delay IS NOT NULL;
|