Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. SELECT
  2. author.author_id AS author_id,
  3. author.name_last AS name_last,
  4. author.name_first AS name_first,
  5. author.detail AS detail
  6. FROM join_play_author
  7. LEFT JOIN author
  8. ON join_play_author.author_id = author.author_id
  9. WHERE join_play_author.play_id = :play_id
  10. ORDER BY author.name_last
  11.  
  12. Array
  13. (
  14. [author_id] => 41
  15. [0] => 41
  16. [name_last] => Dekker
  17. [1] => Dekker
  18. [name_first] => Thomas
  19. [2] => Thomas
  20. [detail] => 0
  21. [3] => 0
  22. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement