up vote 45 down vote favorite
28
share [g+] share [fb]

My table is:

id  home  datetime     player   resource
---|-----|------------|--------|---------
1  | 10  | 04/03/2009 | john   | 399 
2  | 11  | 04/03/2009 | juliet | 244
5  | 12  | 04/03/2009 | borat  | 555
3  | 10  | 03/03/2009 | john   | 300
4  | 11  | 03/03/2009 | juliet | 200
6  | 12  | 03/03/2009 | borat  | 500
7  | 13  | 24/12/2008 | borat  | 600
8  | 13  | 01/01/2009 | borat  | 700

I need to select each distinct "home" holding the maximum value of "datetime".

Result would be:

id  home  datetime     player   resource 
---|-----|------------|--------|---------
1  | 10  | 04/03/2009 | john   | 399
2  | 11  | 04/03/2009 | juliet | 244
5  | 12  | 04/03/2009 | borat  | 555
7  | 13  | 24/12/2008 | borat  | 600
8  | 13  | 01/01/2009 | borat  | 700

I have tried:

// 1 ..by the MySQL manual: 

SELECT DISTINCT home, id, datetime as dt, player, resource
    FROM topten t1
    WHERE datetime = (SELECT MAX(t2.datetime) FROM topten t2
        GROUP BY home )
GROUP BY daytime
ORDER BY daytime DESC

Doesn't work. Result-set has 130 rows although database holds 187. Result includes some dublicates of 'home'.

// 2 ..join

SELECT s1.id, s1.home, s1.datetime, s1.player, s1.resource
FROM topten s1 JOIN
(SELECT id, MAX(datetime) AS dt
  FROM topten
  GROUP BY id) AS s2
  ON s1.id = s2.id
  ORDER BY daytime

Nope. Gives all the records.

// 3 ..something exotic: 

With various results.

link|improve this question
POST your current data structure so we can see what we're working with. – Eppz Mar 4 '09 at 20:20
@OP: I am rolling back because I think our edits got crossed up, I think my edit will help you more. Hopefully you agree. – GEOCHET Mar 4 '09 at 20:21
feedback

protected by Community Jul 22 '11 at 11:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

9 Answers

up vote 56 down vote accepted

You are so close! All you need to do is select BOTH the home and it's max date time, then join back to the topten table on BOTH fields:

SELECT tt.*
FROM topten tt
INNER JOIN
    (
    SELECT home, MAX(datetime) AS MaxDateTime
    FROM topten
    GROUP BY home
    ) groupedtt ON tt.home = groupedtt.home AND tt.datetime = groupedtt.MaxDateTime
link|improve this answer
Test it for distinct, if two equal max datetime be in the same home (with different players) – Max Gontar Mar 4 '09 at 21:04
player:home = 1:N – Kaptah Mar 6 '09 at 17:22
1  
I think the classic way to do this is with a natural join: "SELECT tt.* FROM topten tt NATURAL JOIN ( SELECT home, MAX(datetime) AS datetime FROM topten GROUP BY home ) mostrecent;" Same query exactly, but arguably more readable – Parker Oct 22 '10 at 17:42
@max-gontar, how would you test for distinct if it's not player:home = 1:N? – Randell Aug 1 '11 at 4:03
@Randall, not sure if I got your comment question right, please ask new SO question (more opportunities for description and more chances it will be answered), thanks! – Max Gontar Aug 1 '11 at 7:25
show 1 more comment
feedback

Here goes T-SQL version:

-- Test data
DECLARE @TestTable TABLE (id INT, home INT, date DATETIME, 
  player VARCHAR(20), resource INT)
INSERT INTO @TestTable
SELECT 1, 10, '2009-03-04', 'john', 399 UNION
SELECT 2, 11, '2009-03-04', 'juliet', 244 UNION
SELECT 5, 12, '2009-03-04', 'borat', 555 UNION
SELECT 3, 10, '2009-03-03', 'john', 300 UNION
SELECT 4, 11, '2009-03-03', 'juliet', 200 UNION
SELECT 6, 12, '2009-03-03', 'borat', 500 UNION
SELECT 7, 13, '2008-12-24', 'borat', 600 UNION
SELECT 8, 13, '2009-01-01', 'borat', 700

-- Answer
SELECT id, home, date, player, resource 
FROM (SELECT id, home, date, player, resource, 
    RANK() OVER (PARTITION BY home ORDER BY date DESC) N
    FROM @TestTable
)M WHERE N = 1

-- and if you really want only home with max date
SELECT T.id, T.home, T.date, T.player, T.resource 
    FROM @TestTable T
INNER JOIN 
(   SELECT TI.id, TI.home, TI.date, 
    	RANK() OVER (PARTITION BY TI.home ORDER BY TI.date) N
    FROM @TestTable TI
    WHERE TI.date IN (SELECT MAX(TM.date) FROM @TestTable TM)
)TJ ON TJ.N = 1 AND T.id = TJ.id

EDIT
Unfortunately, there are no RANK() OVER function in MySQL.
But it can be emulated, see Emulating Analytic (AKA Ranking) Functions with MySQL.
So this is MySQL version:

SELECT id, home, date, player, resource 
FROM TestTable AS t1 
WHERE 
    (SELECT COUNT(*) 
    		FROM TestTable AS t2 
    		WHERE t2.home = t1.home AND t2.date > t1.date
    ) = 0
link|improve this answer
sorry dude, #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '( ) OVER ( PARTITION BY krd ORDER BY daytime DESC ) N FROM @rapsa ) M WHERE N = ' at line 1 – Kaptah Mar 5 '09 at 23:01
1  
ah, so you're using MySQL. That's what you should start from! I will update answer soon. – Max Gontar Mar 6 '09 at 7:53
Yes, this does it too. – Kaptah Mar 24 '09 at 15:34
@MaxGontar, your mysql solution rocks, thx. what if in your @_TestTable you remove row#1>: SELECT 1, 10, '2009-03-04', 'john', 399 , this is, what if you have a single row for a given home value? thx. – egidiocs Nov 11 '11 at 3:44
feedback

This will work even if you have two or more rows for each home with equal DATETIME's:

SELECT id, home, datetime, player, resource
FROM   (
       SELECT (
              SELECT  id
              FROM    topten ti
              WHERE   ti.home = t1.home
              ORDER BY
                      ti.datetime DESC
              LIMIT 1
              ) lid
       FROM   (
              SELECT  DISTINCT home
              FROM    topten
              ) t1
       ) ro, topten t2
WHERE  t2.id = ro.lid
link|improve this answer
changed to to ro, works like charm. Thanks. – Kaptah Mar 5 '09 at 22:59
We really need this DIV to check for compilation errors :) – Quassnoi Mar 6 '09 at 8:36
added lid field in table, No Good – Kaptah Mar 6 '09 at 17:19
See updated post – Quassnoi Mar 6 '09 at 20:30
This one didn't execute on PHPMyAdmin. Page refreshes but there's no result nor error..? – Kaptah Mar 24 '09 at 15:47
feedback

This works on Oracle:

with table_max as(
  select id
       , home
       , datetime
       , player
       , resource
       , max(home) over (partition by home) maxhome
    from table  
)
select id
     , home
     , datetime
     , player
     , resource
  from table_max
 where home = maxhome
link|improve this answer
feedback

I think this will give you the desired result:

SELECT   home, MAX(datetime)
FROM     my_table
GROUP BY by home

If you need other columns, just make a join with the original table.

Best regards.

link|improve this answer
He needs other columns also. – Quassnoi Mar 4 '09 at 20:34
What columns he needs?? – arpf Mar 4 '09 at 20:38
id, home, datetime, player, resource – Quassnoi Mar 6 '09 at 10:32
feedback

You can also try this and for large tables your performance will be better.

SELECT t1.id, t1.home, t1.date, t1.player, t1.resource
FROM   t_scores_1 t1 
INNER JOIN t_scores_1 t2
   ON t1.home = t2.home
WHERE t1.date > t2.date
link|improve this answer
feedback

Since people seem to keep running into this thread (comment date ranges from 1.5 year) isn't this much simpler:

SELECT * FROM (SELECT * FROM topten ORDER BY datetime DESC) tmp GROUP BY home

No aggregation functions needed...

Cheers.

link|improve this answer
1  
This doesn't seem to work. Error Message: Column 'x' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. – Fowl Oct 25 '11 at 0:58
feedback

Try this

select * from mytable a join
(select home, max(datetime) datetime
from mytable
group by home) b
 on a.home = b.home and a.datetime = b.datetime

Regards K

link|improve this answer
1  
Test it for distinct, if two equal max datetime be in the same home (with different players) – Max Gontar Mar 4 '09 at 21:03
feedback
SELECT  tt.*
FROM    TestTable tt 
INNER JOIN 
        (
        SELECT  coord, MAX(datetime) AS MaxDateTime 
        FROM    rapsa 
        GROUP BY
                krd 
        ) groupedtt
ON      tt.coord = groupedtt.coord
        AND tt.datetime = groupedtt.MaxDateTime
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.