Skip to content

Instantly share code, notes, and snippets.

@James-McNeill
Created June 26, 2021 09:28
Show Gist options
  • Save James-McNeill/7278fd6b39df63f58e5f43e2e001be7c to your computer and use it in GitHub Desktop.
Save James-McNeill/7278fd6b39df63f58e5f43e2e001be7c to your computer and use it in GitHub Desktop.
-- Order the results by column ascending
SELECT county, station, max(temp) as max_temp, min(temp) as min_temp
FROM hrly_Irish_weather
WHERE county = "Cork"
GROUP BY county, station
ORDER BY max_temp;
-- Order the results by column descending
SELECT county, station, max(temp) as max_temp, min(temp) as min_temp
FROM hrly_Irish_weather
WHERE county = "Cork"
GROUP BY county, station
ORDER BY max_temp DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment