We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
SET @rn := (Select count(lat_n) from station limit 1);
SELECT ROUND(lat_n, 4) AS median
FROM
(
SELECT lat_n, ROW_NUMBER() OVER(ORDER BY lat_n) AS rn
FROM station
) AS station
WHERE
station.rn = @rn / 2;
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 20
You are viewing a single comment's thread. Return to all comments →
Weather Observation Station 20
SET @rn := (Select count(lat_n) from station limit 1); SELECT ROUND(lat_n, 4) AS median FROM ( SELECT lat_n, ROW_NUMBER() OVER(ORDER BY lat_n) AS rn FROM station ) AS station WHERE station.rn = @rn / 2;