Guest User

Untitled

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. SELECT
  2. DATE(t.start_date),
  3. t.trip_id,
  4. t.duration
  5. FROM
  6. trips t
  7. JOIN
  8. weather w
  9. ON
  10. DATE(t.start_date) = DATE(w.date)
  11. WHERE
  12. w.precipitationin > 0
  13. ORDER BY
  14. t.duration desc
  15. LIMIT 3
Add Comment
Please, Sign In to add comment