Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. SELECT
  2. a.id_concessionaria,
  3. a.avscore,
  4. @rank := @rank + 1 AS ranking
  5. FROM
  6. (
  7. SELECT
  8. id_concessionaria,
  9. Avg(rating) AS AvScore
  10. FROM
  11. dealer_ratings
  12. GROUP BY
  13. id_concessionaria
  14. ) a
  15. ORDER BY
  16. a.avscore DESC
  17.  
  18. 12286 5.0000 1
  19. 11393 5.0000 2
  20. 11784 5.0000 3
  21. 11816 5.0000 4
  22. 12291 4.3333 5 --------------------- Essa aqui
  23. 12634 4.0000 6
  24. 19021 3.0000 7
  25. 10194 2.0000 8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement