Guest User

Untitled

a guest
Feb 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. SELECT
  2. zip,
  3. MAX(maxtemperaturef) as highest_temperature
  4. FROM
  5. weather
  6. GROUP BY
  7. zip
  8. ORDER BY
  9. highest_temperature desc
  10. LIMIT 1;
Add Comment
Please, Sign In to add comment