MYSQL implements ranking and querying specified user ranking function (parallel ranking function) example code

MYSQL implements ranking and querying specified user ranking function (parallel ranking function) example code

Preface

This article mainly introduces the relevant content about MYSQL to realize ranking and query the specified user ranking function (parallel ranking function), and shares it for your reference and learning. Let's take a look at the detailed introduction.

Table structure:

CREATE TABLE test.testsort (
 
id int(11) NOT NULL AUTO_INCREMENT,
 
uid int(11) DEFAULT 0 COMMENT 'user id',
 
score decimal(10, 2) DEFAULT 0.00 COMMENT 'score',
 
PRIMARY KEY (id)
 
)
 
ENGINE = INNODB
 
AUTO_INCREMENT = 1
 
CHARACTER SET utf8
 
COLLATE utf8_general_ci
 
COMMENT = 'Test sorting'
 
ROW_FORMAT = DYNAMIC;

Idea: You can sort first and then number the results; you can also query the results first and then sort and number them.

illustrate:

@rownum := @rownum + 1 In this sentence, := is used for assignment. This means that @rownum + 1 is executed first, and then the value is assigned to @rownum.

(SELECT @rownum := 0) r This sentence means setting the initial value of the rownum field to 0, that is, the numbering starts from 1.

Achieve ranking:

Method 1:

SELECT t.*, @rownum := @rownum + 1 AS rownum
 
FROM (SELECT @rownum := 0) r, (SELECT * FROM testsort ORDER BY score DESC) AS t;

Method 2:

SELECT t.*, @rownum := @rownum + 1 AS rownum
 
FROM (SELECT @rownum := 0) r, testsort AS t
 
ORDER BY t.score DESC;

result:

View the ranking of a specified user:

Method 1:

SELECT b.* FROM
 
(
 
SELECT t.*, @rownum := @rownum + 1 AS rownum
 
FROM (SELECT @rownum := 0) r,
 
(SELECT * FROM testsort ORDER BY score DESC) AS t
 
) AS b WHERE b.uid = 222;

Method 2:

SELECT b.* from
 
(
 
SELECT t.*, @rownum := @rownum + 1 AS rownum
 
FROM (SELECT @rownum := 0) r, testsort AS t
 
ORDER BY t.score DESC
 
) as b where b.uid = 222;

result:

To achieve a tie ranking (same ranking for the same score):

SELECT
 
obj.uid,
 
obj.score,
 
CASE
 
WHEN @rowtotal = obj.score THEN
 
@rownum
 
WHEN @rowtotal := obj.score THEN
 
@rownum :=@rownum + 1
 
WHEN @rowtotal = 0 THEN
 
@rownum :=@rownum + 1
 
END AS rownum
 
FROM
 
(
 
SELECT
 
uid,
 
score
 
FROM
 
testsort
 
ORDER BY
 
score DESC
 
) AS obj,
 
(SELECT @rownum := 0 ,@rowtotal := NULL)

Query the ranking of a specified user:

SELECT total.* FROM
 
(SELECT
 
obj.uid,
 
obj.score,
 
CASE
 
WHEN @rowtotal = obj.score THEN
 
@rownum
 
WHEN @rowtotal := obj.score THEN
 
@rownum :=@rownum + 1
 
WHEN @rowtotal = 0 THEN
 
@rownum :=@rownum + 1
 
END AS rownum
 
FROM
 
(
 
SELECT
 
uid,
 
score
 
FROM
 
testsort
 
ORDER BY
 
score DESC
 
) AS obj,
 
(SELECT @rownum := 0 ,@rowtotal := NULL) r) AS total WHERE total.uid = 222;

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Mysql sorting to get ranking example code
  • MySQL page access statistics and rankings
  • How to add ranking to custom field query results in MySQL
  • MySQL grouping to get the first few records in each group (ranking) with research on group by and order by
  • Summarize several common ranking problems in MySQL

<<:  Implementation of Docker building Maven+Tomcat basic image

>>:  Component design specifications for WeChat mini-program development

Recommend

How to install Jenkins using Docker

Table of contents 1. Pull the image 2. Create a l...

JS implements a simple brick-breaking pinball game

This article shares the specific code of JS to im...

The implementation process of extracting oracle data to mysql database

In the migration of Oracle database to MySQL data...

A record of the pitfalls of the WeChat applet component life cycle

The component lifecycle is usually where our busi...

Automatically install the Linux system based on cobbler

1. Install components yum install epel-rpm-macros...

MySQL 5.7.24 installation and configuration method graphic tutorial

MySQL is the most popular relational database man...

Slot arrangement and usage analysis in Vue

The operating environment of this tutorial: Windo...

Six important selectors in CSS (remember them in three seconds)

From: https://blog.csdn.net/qq_44761243/article/d...

Detailed introduction to JS basic concepts

Table of contents 1. Characteristics of JS 1.1 Mu...

Responsive layout summary (recommended)

Basic knowledge of responsive layout development ...

Tutorial on installing mysql under centos7

Recently, I plan to deploy a cloud disk on my hom...

Do you know the meaning of special symbols in URL?

1.# # represents a location in a web page. The ch...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Analysis of the difference between emits and attrs in Vue3

Table of contents in conclusion Practice Analysis...