Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. SELECT
  2. es.event_id,
  3. events.event_key,
  4. ap.score_attempt_type,
  5. ap.shootout_shot_order,
  6. ap.play_result,
  7. es.event_id,
  8. es.action_key,
  9. apar.person_id,
  10. apar.participant_role
  11. FROM ice_hockey_action_participants AS apar,
  12. ice_hockey_action_plays AS ap,
  13. ice_hockey_event_states AS es,
  14. events
  15. WHERE
  16. apar.ice_hockey_action_play_id = ap.id
  17. AND ap.ice_hockey_event_state_id = es.id
  18. AND es.event_id = events.id
  19. AND ap.score_attempt_type = 'shootout'
  20. AND events.event_key = 'l.qmjhl.ca-2016-e.25188'
  21. ORDER BY action_key ASC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement