Home  >  Article  >  Database  >  How to achieve ranking in mysql

How to achieve ranking in mysql

coldplay.xixi
coldplay.xixiOriginal
2020-09-28 13:34:143295browse

How to achieve ranking in mysql: use demo function, the syntax is [SELECT banji,avg(score) as AvgS FROM table_test GROUP BY banji ORDER BY AvgS DESC].

How to achieve ranking in mysql

How to achieve ranking in mysql:

can be implemented with Demo

Pay attention to the A in it , it is a nested query, so the ranking will be correct.

FROM
(
     SELECT A.*,@rank:=@rank+1 as pm
     FROM 
     (
      SELECT banji,avg(score) as AvgS FROM table_test GROUP BY banji  ORDER BY AvgS   DESC
     ) A ,(SELECT @rank:=0) B
) M
ORDER BY M.banji

If there is no subquery in it and the following SQL is used, the sorting will be wrong. What goes wrong depends on whether there is more than one grouping in GROUP BY.

SELECT banji,avg(score) as AvgS ,@rank:=@rank+1 as pm
FROM table_test A,(SELECT @rank:=0) B
GROUP BY banji
ORDER BY AvgS   DESC

Reason: @rank ranking occurs before GROUP BY. GROUP BY groups the ranked results. If you want to rank grouped results, use a subquery.

More related free learning recommendations: mysql tutorial(Video)

The above is the detailed content of How to achieve ranking in mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn