Collections:
RANK() - Vale Rank of Sorted Values
How to calculate the value rank of the sorting field expression in the current result set window using the RANK() function?
✍: FYIcenter.com
RANK(n) is a MySQL built-in window function that
calculates the value rank of the sorting field expression
in the current result set window.
For example:
SELECT help_topic_id AS tic, help_category_id AS cid, RANK() OVER w, DENSE_RANK() OVER w FROM mysql.help_topic WINDOW w AS (ORDER BY help_category_id); -- +-----+-----+---------------+---------------------+ -- | tic | cid | RANK() OVER w | DENSE_RANK() OVER w | -- +-----+-----+---------------+---------------------+ -- | 0 | 1 | 1 | 1 | -- | 1 | 1 | 1 | 1 | -- | 2 | 2 | 3 | 2 | -- | 6 | 2 | 3 | 2 | -- | 7 | 2 | 3 | 2 | -- | 8 | 2 | 3 | 2 | -- | 9 | 2 | 3 | 2 | -- | 10 | 2 | 3 | 2 | -- ... -- +-----+-----+---------------+---------------------+
Reference information of the RANK() function:
RANK(): val Calculates the value rank of the sorting field expression in the current result set window. Arguments, return value and availability: val: Return value. The value of the sorting field. Available since MySQL 8.
Related MySQL functions:
⇒ ROW_NUMBER() - Row Position in Result Set Window
⇐ PERCENT_RANK() - Rank Percentage of Sorted Values
2024-09-12, 1416🔥, 0💬
Popular Posts:
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Locate and Take Substrings with CHARINDEX() and SUBSTRING() Functions in SQL Server Transact-...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...