Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # ====================================================
  2. # Все участники c активными целями в 2.0 +город, КМ, Рег
  3. # ====================================================
  4.  
  5. select
  6. u.registration_time,
  7. concat( u.name, ' ', u.surname) 'клиент',
  8. u.email, u.phone, u.skype,
  9. concat( r.name, ' ', r.surname) 'Рег',
  10. concat( k.name, ' ', k.surname) 'КМ',
  11. c.title
  12. from users u
  13. join users_goals g
  14. on u.id = g.user_id
  15. and g.is_deleted = 0
  16. and g.status = 1
  17. join queues q
  18. on q.id = g.queue_id
  19. and q.id = 4
  20. left join cities c
  21. on c.id = u.city_id
  22. left join users k
  23. on k.id = u.client_manager_id
  24. left join users r
  25. on r.id = u.registration_user_id
  26. group by u.id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement