Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

rank users by max id and points but (rankings are wrong)

Tags:

sql

mysql

I am trying to get highest points row along with ranks and select query without rownum=rownum+1 .I have tried the query below but I am missing something also link http://sqlfiddle.com/#!2/fd7897/7 .

I am looking for answer like for each receiver the last entry which would also be highest points entry rankwise: I really appreciate any help.Thanks in Advance.

Something like this:

('2', '4', 'test ...','2011-08-21 14:13:19','40','009')---rank1

('4', '2', 'test ...','2011-08-21 14:13:19','30','003')----rank2

('1', '3', 'test ...','2011-08-21 14:12:19','20','005')---- rank3

query so far:

    SELECT * ,
            (select count(*)
             from  tblA u2
             where u2.points > u.points or
                   u2.points = u.points and u2.id <= u.id
            ) as rank
FROM (SELECT u.receiver, MAX(u.id) AS id
      FROM tblA u
      GROUP BY  u.receiver
    ) subset JOIN
    tblA u
    ON subset.receiver = u.receiver AND subset.id = u.id order by rank;

tables:

CREATE TABLE if not exists tblA
(
id int(11) NOT NULL auto_increment ,
sender varchar(255),
receiver varchar(255),
 msg varchar(255),
 date timestamp,
  points int(255),
  refno varchar(255),
 PRIMARY KEY (id)
);

CREATE TABLE if not exists tblB
(
id int(11) NOT NULL auto_increment ,
sno varchar(255),
name varchar(255),
 PRIMARY KEY (id)
);

CREATE TABLE if not exists tblC
(
id int(11) NOT NULL auto_increment ,
data varchar(255),
  refno varchar(255),
  extrarefno varchar(255),
 PRIMARY KEY (id)
);


INSERT INTO tblA (sender, receiver,msg,date,points,refno ) VALUES
('1', '2', 'buzz ...','2011-08-21 14:11:09','10','001'),
('1', '2', 'test ...','2011-08-21 14:12:19','20','002'),
('4', '2', 'test ...','2011-08-21 14:13:19','30','003'),
('1', '3', 'buzz ...','2011-08-21 14:11:09','10','004'),
('1', '3', 'test ...','2011-08-21 14:12:19','20','005'),
('1', '4', 'buzz ...','2011-08-21 14:11:09','10','006'),
('1', '4', 'test ...','2011-08-21 14:12:19','20','007'),
('3', '4', 'test ...','2011-08-21 14:13:19','30','008'),
('2', '4', 'test ...','2011-08-21 14:13:19','40','009');



INSERT INTO tblB (sno, name ) VALUES
('1', 'Aa'),
('2', 'Bb'),
('3', 'Cc'),
('4', 'Dd'),
('5', 'Ee'),
('6', 'Ff'),
('7', 'Gg'),
('8', 'Hh');


INSERT INTO tblC (data,refno,extrarefno ) VALUES
('data1', '001', '101'),
('data2', '002', '102'),
('data3', '003', '103'),
('data4', '004', '101'),
('data5', '005', '102'),
('data6', '006', '103'),
('data7', '007', '101'),
('data8', '008', '101'),
('data9', '009', '101');
like image 383
jason Avatar asked Oct 02 '22 15:10

jason


1 Answers

The problem is the count(*) in the subquery. Change it to count(distinct receiver):

SELECT * ,
       (select count(distinct receiver)
        from  tblA u2
        where u2.points > u.points or
              u2.points = u.points and u2.id <= u.id
       ) as rank
FROM (SELECT u.receiver, MAX(u.id) AS id
      FROM tblA u
      GROUP BY  u.receiver
    ) subset JOIN
    tblA u
    ON subset.receiver = u.receiver AND subset.id = u.id
order by rank;

EDIT:

To create this as a MySQL view, you have to get right of the aggregation in the from clause:

SELECT * ,
       (select count(distinct receiver)
        from  tblA u2
        where u2.points > u.points or
              u2.points = u.points and u2.id <= u.id
       ) as rank
FROM tblA u
WHERE u.id = (select max(u2.id) from tblA u2 where u2.receiver = u.receiver)
order by rank;
like image 149
Gordon Linoff Avatar answered Oct 11 '22 03:10

Gordon Linoff