SQL selecting rows by most recent date - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:58:54Zhttp://stackoverflow.com/feeds/question/189213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date6SQL selecting rows by most recent datejgreep2008-10-09T21:05:02Z2008-10-21T09:15:27Z
<p>Using the following query and results, I'm looking for the most recent entry where the ChargeId and ChargeType are unique.</p>
<pre><code>select chargeId, chargeType, serviceMonth from invoice
CHARGEID CHARGETYPE SERVICEMONTH
1 101 R 8/1/2008
2 161 N 2/1/2008
3 101 R 2/1/2008
4 101 R 3/1/2008
5 101 R 4/1/2008
6 101 R 5/1/2008
7 101 R 6/1/2008
8 101 R 7/1/2008
</code></pre>
<p>Desired:</p>
<pre><code> CHARGEID CHARGETYPE SERVICEMONTH
1 101 R 8/1/2008
2 161 N 2/1/2008
</code></pre>
http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date/189221#18922111Answer by Mitchel Sellers for SQL selecting rows by most recent dateMitchel Sellers2008-10-09T21:07:29Z2008-10-09T21:55:36Z<p>You can use a <strong>GROUP BY</strong> to group items by type and id. Then you can use the <strong>MAX()</strong> Aggregate function to get the most recent service month. The below returns a result set with ChargeId, ChargeType, and MostRecentServiceMonth</p>
<pre><code>SELECT
CHARGEID,
CHARGETYPE,
MAX(SERVICEMONTH) AS "MostRecentServiceMonth"
FROM INVOICE
GROUP BY CHARGEID, CHARGETYPE
</code></pre>
http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date/189227#1892271Answer by Ben Hoffstein for SQL selecting rows by most recent dateBen Hoffstein2008-10-09T21:09:20Z2008-10-09T21:09:20Z<pre><code>SELECT chargeId, chargeType, MAX(serviceMonth) AS serviceMonth
FROM invoice
GROUP BY chargeId, chargeType
</code></pre>
http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date/189264#1892642Answer by tvanfosson for SQL selecting rows by most recent datetvanfosson2008-10-09T21:22:00Z2008-10-09T21:41:38Z<p>So this isn't what the requester was asking for but it is the answer to "SQL selecting rows by most recent date".</p>
<p>Modified from
<a href="http://wiki.lessthandot.com/index.php/Returning_The_Maximum_Value_For_A_Row" rel="nofollow">http://wiki.lessthandot.com/index.php/Returning_The_Maximum_Value_For_A_Row</a></p>
<pre><code>SELECT t.chargeId, t.chargeType, t.serviceMonth FROM(
SELECT chargeId,MAX(serviceMonth) AS serviceMonth
FROM invoice
GROUP BY id) x
JOIN invoice t ON x.chargeId =t.chargeId
AND x.serviceMonth = t.serviceMonth
</code></pre>
http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date/221269#2212690Answer by James for SQL selecting rows by most recent dateJames2008-10-21T09:15:27Z2008-10-21T09:15:27Z<p>was very usefull to solve a similar problem. Many thanks...</p>