SQL selecting rows by most recent date - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:58:54Z http://stackoverflow.com/feeds/question/189213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date 6 SQL selecting rows by most recent date jgreep 2008-10-09T21:05:02Z 2008-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#189221 11 Answer by Mitchel Sellers for SQL selecting rows by most recent date Mitchel Sellers 2008-10-09T21:07:29Z 2008-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#189227 1 Answer by Ben Hoffstein for SQL selecting rows by most recent date Ben Hoffstein 2008-10-09T21:09:20Z 2008-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#189264 2 Answer by tvanfosson for SQL selecting rows by most recent date tvanfosson 2008-10-09T21:22:00Z 2008-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#221269 0 Answer by James for SQL selecting rows by most recent date James 2008-10-21T09:15:27Z 2008-10-21T09:15:27Z <p>was very usefull to solve a similar problem. Many thanks...</p>