Are there any functions in MySQL like dense_rank() and row_number() like Oracle?

前端 未结 6 1978
别那么骄傲
别那么骄傲 2020-12-06 02:40

Are there any functions in MySQL like dense_rank() and row_number() like those provided by Oracle and other DBMS?

I want to generate an id

相关标签:
6条回答
  • 2020-12-06 03:15

    MySQL doesn't support these functions, but you can mimic them yourself. Shamelessly link to my solution to ROW_NUMBER, RANK and DENSE_RANK functions in MySQL

    0 讨论(0)
  • 2020-12-06 03:17

    In MySql you dont have dense_rank() or row_number() like the one in Oracle.

    But you can create the same functionality through SQL query:

    Here is an article doing the same:

    dense_rank()

    row_number()

    0 讨论(0)
  • 2020-12-06 03:22

    DENSE_RANK() function is available in MySQL version 8.0. So if you're using MySQL version 8.0 you can run this command,

    SELECT name, DENSE_RANK() OVER ( ORDER BY value ) my_rank FROM table_name;
    
    0 讨论(0)
  • 2020-12-06 03:30

    We have now..

    select ename, sal, dense_rank() over (order by sal desc)rnk
    from emp2 e
    order by rnk;
    
    0 讨论(0)
  • 2020-12-06 03:31

    MySQL version 8 now has ROW_NUMBER. Documentation

    EXAMPLE:

    SELECT 
        ROW_NUMBER() OVER (ORDER BY s.Id) AS 'row_num', 
        s.product,
        s.title
    FROM supplies AS S
    
    0 讨论(0)
  • 2020-12-06 03:35

    Mysql doesn't have them, but you can simulate row_number() with the following expression that uses a user defined variable:

    (@row := ifnull(@row, 0) + 1)
    

    like this:

    select *, (@row := ifnull(@row, 0) + 1) row_number
    from mytable
    order by id
    

    but if you're reusing the session, @row will still be set, so you'll need to reset it like this instead:

    set @row := 0;
    select *, (@row := @row + 1) row_number
    from mytable
    order by 1;
    

    See SQLFiddle.

    dense_rank() is possible but a train wreck; I advise handling that requirement in the app layer.

    0 讨论(0)
提交回复
热议问题