MySQL Forums
Forum List  »  InnoDB

Re: Rank with Total
Posted by: Ra Nala
Date: November 04, 2017 11:44AM

Hi Peter,

Thanks for your help.

Using below logic i am able to get rownumber , could you please help on rank_total(i.e. value as 3 should come) ?

in table i should not update, i should get rank_total using below query. Please\kindly help.

id | Name | rownumber rank_total
1 a 1 3
1 b 2 3
1 ads 3 3

SELECT
t.*,
@cur:= IF(id=@id, @cur+1, 1) AS RowNumber,
@id := id
FROM
t CROSS JOIN
(SELECT @id:=(SELECT MIN(id) FROM t), @cur:=0) AS init
ORDER BY
t.id

Options: ReplyQuote


Subject
Views
Written By
Posted
1097
November 02, 2017 12:38PM
627
November 02, 2017 01:12PM
Re: Rank with Total
537
November 04, 2017 11:44AM
460
November 04, 2017 12:07PM
607
November 04, 2017 12:15PM
527
November 04, 2017 05:36PM
561
November 05, 2017 11:49AM
504
November 05, 2017 03:43PM
516
November 06, 2017 12:01PM
479
November 06, 2017 12:51PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.