Guest User

Untitled

a guest
Oct 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. The IDs and durations for all trips of duration greater than 500, ordered by duration
  2.  
  3. SELECT
  4. trip_id,
  5. duration
  6. FROM
  7. trips
  8. WHERE
  9. duration > 500
  10. ORDER BY duration DESC
  11.  
  12. Every column of the stations table for station id 84
  13.  
  14. SELECT
  15. *
  16. FROM
  17. stations
  18. WHERE
  19. station_id = '84'
  20.  
  21. The min temperatures of all the occurrences of rain in zip 94301
  22.  
  23. SELECT
  24. MinTemperatureF
  25. FROM
  26. weather
  27. WHERE
  28. ZIP = '94301'
Add Comment
Please, Sign In to add comment