SQL - fetch the row which has the Max value for a column - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T07:59:43Zhttp://stackoverflow.com/feeds/question/121387http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column13SQL - fetch the row which has the Max value for a columnUmang2008-09-23T14:34:13Z2009-10-31T01:16:51Z
<p>Table: UserId, Value, Date.</p>
<p>I want to get the UserId, Value for the max(Date) for each UserId. That is, the Value for each UserId that has the latest date. Is there a way to do this simply in SQL? (Preferably Oracle)</p>
<p>Thank in advance!</p>
<p>[Update:] Apologies for any ambiguity: I need to get ALL the UserIds. But for each UserId, only that row where that user has the latest date.</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121401#1214010Answer by Ben Scheirman for SQL - fetch the row which has the Max value for a columnBen Scheirman2008-09-23T14:35:39Z2008-09-23T14:35:39Z<p>(T-SQL)</p>
<pre><code>select top 1 UserId, Value
from theTable
order by [date] DESC
</code></pre>
<p>---EDIT----
I just re-read your question and realized that it's not this simple. Whoops!</p>
<p>Does this work?</p>
<pre><code>select userId, value
from theTable
group by userId
having MAX([date])
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121416#1214160Answer by jdmichal for SQL - fetch the row which has the Max value for a columnjdmichal2008-09-23T14:36:59Z2008-09-23T14:36:59Z<p>I think something like this. (Forgive me for any syntax mistakes; I'm used to using HQL at this point!)</p>
<p>EDIT: Also misread the question! Corrected the query...</p>
<pre><code>SELECT UserId, Value
FROM Users AS user
WHERE Date = (
SELECT MAX(Date)
FROM Users AS maxtest
WHERE maxtest.UserId = user.UserId
)
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121435#12143511Answer by Steve K for SQL - fetch the row which has the Max value for a columnSteve K2008-09-23T14:39:13Z2008-09-23T14:45:16Z<p>I don't know your exact columns names, but it would be something like this:</p>
<pre>
select userid, value
from users u1
where date = (select max(date)
from users u2
where u1.userid = u2.userid)
</pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121438#1214380Answer by Frans for SQL - fetch the row which has the Max value for a columnFrans2008-09-23T14:39:31Z2008-09-23T20:31:28Z<p>(T-SQL) First get all the users and their maxdate. Join with the table to find the corresponding values for the users on the maxdates.</p>
<pre><code>create table users (userid int , value int , date datetime)
insert into users values (1, 1, '20010101')
insert into users values (1, 2, '20020101')
insert into users values (2, 1, '20010101')
insert into users values (2, 3, '20030101')
select T1.userid, T1.value, T1.date
from users T1,
(select max(date) as maxdate, userid from users group by userid) T2
where T1.userid= T2.userid and T1.date = T2.maxdate
</code></pre>
<p>results:</p>
<pre><code>userid value date
----------- ----------- --------------------------
2 3 2003-01-01 00:00:00.000
1 2 2002-01-01 00:00:00.000
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121441#1214410Answer by Unsliced for SQL - fetch the row which has the Max value for a columnUnsliced2008-09-23T14:39:54Z2008-09-23T14:39:54Z<p>Your question is a little ambiguous - is there one max(date) or a max(date) for each user id? </p>
<p>Either way, embedded queries - either in the condition, in the select or in one of the joins should get you on the right track. </p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121450#12145014Answer by David Aldridge for SQL - fetch the row which has the Max value for a columnDavid Aldridge2008-09-23T14:41:11Z2008-09-23T17:58:18Z<p>This will retrieve all rows for which the my___date column value is equal to the maximum value of my_date for that userid. This may retrieve multiple rows for the userid where the maximum date is on multiple rows.</p>
<pre><code>select userid,
my_date,
...
from
(
select userid,
my_Date,
...
max(my_date) over (partition by userid) max_my_date
from users
)
where my_date = max_my_date
</code></pre>
<p>"Analytic functions rock"</p>
<p>Edit: With regard to the first comment ...</p>
<p>"using analytic queries and a self-join defeats the purpose of analytic queries"</p>
<p>There is no self-join in this code. There is instead a predicate placed on the result of the inline view that contains the analytic function -- a very different matter, and completely standard practice.</p>
<p>"The default window in Oracle is from the first row in the partition to the current one"</p>
<p>The windowing clause is only applicable in the presence of the order by clause. With no order by clause, no windowing clause is applied by default and none can be explicitly specified.</p>
<p>The code works.</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121475#1214750Answer by finnw for SQL - fetch the row which has the Max value for a columnfinnw2008-09-23T14:44:53Z2008-09-23T18:22:50Z<p>If (UserID, Date) is unique, i.e. no date appears twice for the same user then:</p>
<pre><code>select TheTable.UserID, TheTable.Value
from TheTable inner join (select UserID, max([Date]) MaxDate
from TheTable
group by UserID) UserMaxDate
on TheTable.UserID = UserMaxDate.UserID
TheTable.[Date] = UserMaxDate.MaxDate;
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121492#1214920Answer by stefano m for SQL - fetch the row which has the Max value for a columnstefano m2008-09-23T14:47:21Z2008-09-23T14:47:21Z<p>Hi,
i thing you shuold make this variant to previous query:</p>
<pre><code>SELECT UserId, Value FROM Users U1 WHERE
Date = ( SELECT MAX(Date) FROM Users where UserId = U1.UserId)
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121506#1215060Answer by marc for SQL - fetch the row which has the Max value for a columnmarc2008-09-23T14:49:33Z2008-09-23T14:49:33Z<p>Assuming Date is unique for a given UserID, here's some TSQL:</p>
<p>SELECT
UserTest.UserID, UserTest.Value
FROM UserTest
INNER JOIN
(
SELECT UserID, MAX(Date) MaxDate
FROM UserTest
GROUP BY UserID
) Dates
ON UserTest.UserID = Dates.UserID
AND UserTest.Date = Dates.MaxDate </p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121519#1215192Answer by Aheho for SQL - fetch the row which has the Max value for a columnAheho2008-09-23T14:51:02Z2008-09-23T14:51:02Z<pre><code>Select
UserID,
Value,
Date
From
Table,
(
Select
UserID,
Max(Date) as MDate
From
Table
Group by
UserID
) as subQuery
Where
Table.UserID = subQuery.UserID and
Table.Date = subQuery.mDate
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121556#1215560Answer by Zsolt Botykai for SQL - fetch the row which has the Max value for a columnZsolt Botykai2008-09-23T14:57:43Z2008-09-23T14:57:43Z<pre><code>select userid, value, date
from thetable t1 ,
( select t2.userid, max(t2.date) date2
from thetable t2
group by t2.userid ) t3
where t3.userid t1.userid and
t3.date2 = t1.date
</code></pre>
<p>IMHO this works. HTH </p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121589#1215890Answer by GateKiller for SQL - fetch the row which has the Max value for a columnGateKiller2008-09-23T15:05:01Z2008-09-23T15:05:01Z<p>I think this should work?</p>
<pre><code>Select
T1.UserId,
(Select Top 1 T2.Value From Table T2 Where T2.UserId = T1.UserId Order By Date Desc) As 'Value'
From
Table T1
Group By
T1.UserId
Order By
T1.UserId
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121622#1216220Answer by Valerion for SQL - fetch the row which has the Max value for a columnValerion2008-09-23T15:11:04Z2008-09-23T15:11:04Z<p>This should be as simple as:</p>
<p>SELECT UserId, Value
FROM Users u
WHERE Date = (SELECT MAX(Date) FROM Users WHERE UserID = u.UserID)</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121659#1216590Answer by KyleLanser for SQL - fetch the row which has the Max value for a columnKyleLanser2008-09-23T15:17:59Z2008-09-23T15:17:59Z<p>First try I misread the question, following the top answer, here is a complete example with correct results:</p>
<pre><code>CREATE TABLE table_name (id int, the_value varchar(2), the_date datetime);
INSERT INTO table_name (id,the_value,the_date) VALUES(1 ,'a','1/1/2000');
INSERT INTO table_name (id,the_value,the_date) VALUES(1 ,'b','2/2/2002');
INSERT INTO table_name (id,the_value,the_date) VALUES(2 ,'c','1/1/2000');
INSERT INTO table_name (id,the_value,the_date) VALUES(2 ,'d','3/3/2003');
INSERT INTO table_name (id,the_value,the_date) VALUES(2 ,'e','3/3/2003');
</code></pre>
<p>--</p>
<pre><code> select id, the_value
from table_name u1
where the_date = (select max(the_date)
from table_name u2
where u1.id = u2.id)
</code></pre>
<p>--</p>
<pre><code>id the_value
----------- ---------
2 d
2 e
1 b
(3 row(s) affected)
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121661#1216611Answer by Dave Costa for SQL - fetch the row which has the Max value for a columnDave Costa2008-09-23T15:18:24Z2008-09-23T15:18:24Z<pre><code>SELECT userid, MAX(value) KEEP (DENSE_RANK FIRST ORDER BY date DESC)
FROM table
GROUP BY userid
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121693#1216931Answer by mancaus for SQL - fetch the row which has the Max value for a columnmancaus2008-09-23T15:22:48Z2008-09-23T15:22:48Z<p>I know you asked for Oracle, but in SQL 2005 we now use this:</p>
<pre><code>
-- Single Value
;WITH ByDate
AS (
SELECT UserId, Value, ROW_NUMBER() OVER (PARTITION BY UserId ORDER BY Date DESC) RowNum
FROM UserDates
)
SELECT UserId, Value
FROM ByDate
WHERE RowNum = 1
-- Multiple values where dates match
;WITH ByDate
AS (
SELECT UserId, Value, RANK() OVER (PARTITION BY UserId ORDER BY Date DESC) Rnk
FROM UserDates
)
SELECT UserId, Value
FROM ByDate
WHERE Rnk = 1
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121739#1217390Answer by flado for SQL - fetch the row which has the Max value for a columnflado2008-09-23T15:28:22Z2008-09-23T15:28:22Z<p>Since this is tagged with oracle, analytic functions should be ok, and the best answer performance-wise: see David Aldridge's answer above</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121873#1218733Answer by bentilly for SQL - fetch the row which has the Max value for a columnbentilly2008-09-23T15:47:54Z2008-09-23T15:47:54Z<p>I don't have Oracle to test it, but the most efficient solution is to use analytic queries. It should look something like this:</p>
<pre><code>SELECT DISTINCT
UserId
, MaxValue
FROM (
SELECT UserId
, FIRST (Value) Over (
PARTITION BY UserId
ORDER BY Date DESC
) MaxValue
FROM SomeTable
)
</code></pre>
<p>I suspect that you can get rid of the outer query and put distinct on the inner, but I'm not sure. In the meantime I know this one works.</p>
<p>If you want to learn about analytic queries, I'd suggest reading <a href="http://www.orafaq.com/node/55" rel="nofollow">http://www.orafaq.com/node/55</a> and <a href="http://www.akadia.com/services/ora_analytic_functions.html" rel="nofollow">http://www.akadia.com/services/ora_analytic_functions.html</a>. Here is the short summary.</p>
<p>Under the hood analytic queries sort the whole dataset, then process it sequentially. As you process it you partition the dataset according to certain criteria, and then for each row looks at some window (defaults to the first value in the partition to the current row - that default is also the most efficient) and can compute values using a number of analytic functions (the list of which is very similar to the aggregate functions).</p>
<p>In this case here is what the inner query does. The whole dataset is sorted by UserId then Date DESC. Then it processes it in one pass. For each row you return the UserId and the first Date seen for that UserId (since dates are sorted DESC, that's the max date). This gives you your answer with duplicated rows. Then the outer DISTINCT squashes duplicates.</p>
<p>This is not a particularly spectacular example of analytic queries. For a much bigger win consider taking a table of financial receipts and calculating for each user and receipt, a running total of what they paid. Analytic queries solve that efficiently. Other solutions are less efficient. Which is why they are part of the 2003 SQL standard. (Unfortunately Postgres doesn't have them yet. Grrr...)</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/123481#1234811Answer by Bill Karwin for SQL - fetch the row which has the Max value for a columnBill Karwin2008-09-23T20:01:21Z2008-09-23T20:01:21Z<p>I see many people use subqueries or else vendor-specific features to do this, but I often do this kind of query without subqueries in the following way. It uses plain, standard SQL so it should work in any brand of RDBMS.</p>
<pre><code>SELECT t1.*
FROM mytable AS t1
LEFT OUTER JOIN mytable AS t2
ON (t1.UserId = t2.UserId AND t1."Date" < t2."Date")
WHERE t2.UserId IS NULL;
</code></pre>
<p>In other words: fetch the row from t1 where no other row exists with the same UserId and a greater Date.</p>
<p>(I put the identifier "Date" in delimiters because it's an SQL reserved word.)</p>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/123511#1235110Answer by Mike Woodhouse for SQL - fetch the row which has the Max value for a columnMike Woodhouse2008-09-23T20:06:29Z2008-09-24T11:49:55Z<p>Not being at work, I don't have Oracle to hand, but I seem to recall that Oracle allows multiple columns to be matched in an IN clause, which should at least avoid the options that use a correlated subquery, which is seldom a good idea.</p>
<p>Something like this, perhaps (can't remember if the column list should be parenthesised or not):</p>
<pre><code>SELECT *
FROM MyTable
WHERE (User, Date) IN
( SELECT User, MAX(Date) FROM MyTable GROUP BY User)
</code></pre>
<p>EDIT: Just tried it for real:</p>
<pre><code>SQL> create table MyTable (usr char(1), dt date);
SQL> insert into mytable values ('A','01-JAN-2009');
SQL> insert into mytable values ('B','01-JAN-2009');
SQL> insert into mytable values ('A', '31-DEC-2008');
SQL> insert into mytable values ('B', '31-DEC-2008');
SQL> select usr, dt from mytable
2 where (usr, dt) in
3 ( select usr, max(dt) from mytable group by usr)
4 /
U DT
- ---------
A 01-JAN-09
B 01-JAN-09
</code></pre>
<p>So it works, although some of the new-fangly stuff mentioned elsewhere may be more performant.</p>