Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Włączenie wartości przyrostowej do tego sql

select id, perCent, 
       @curRank := if(parent = @prevParent, @curRank + 1, 1) AS rank,
       @prevParent := parent
from (
    select child.id, child.perCent, child.parent
    from likesd parent
    join likesd child
       on parent.id = child.parent
    where parent.type = 3
    order by parent.id, child.perCent desc) x
cross join (SELECT @curRank := 0, @prevParent := null) r

SKRZYPKA



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Projektowanie bazy danych:które podejście jest lepsze?

  2. Czy MySQL obsługuje dziedziczenie tabel?

  3. MySQL Obejście błędu 1093

  4. Używanie wyzwalaczy MySQL do rejestrowania wszystkich zmian w tabeli w tabeli dodatkowej

  5. Wiersz poleceń i transakcje MySQL