I'm completely stumped as to create a new column "LoginRank" from rank() over(partition by x, order by y desc) in mysql.
From sql server i would write the following query, to create a column "Loginrank" that is grouped by "login" and ordered by "id".
select ds.id,
ds.login,
rank() over(partition by ds.login order by ds.id asc) as LoginRank
from tablename.ds
I have the following table.
create table ds (id int(11), login int(11))
insert into ds (id, login)
values (1,1),
(2,1),
(3,1),
(4,2),
(5,2),
(6,6),
(7,6),
(8,1)
I tried applying many existing mysql fixes to my dataset but continue to have issues.
Any help is greatly appreciated. Thanks!
Try this query: - MySql does not support Rank() function.
Hope it helps you!
After Mysql 8.0 you can use Rank function
here is the usage