vote up 6 vote down star
2

Using the following query and results, I'm looking for the most recent entry where the ChargeId and ChargeType are unique.

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

Desired:

    CHARGEID	CHARGETYPE	SERVICEMONTH
1   101		R		8/1/2008
2   161		N		2/1/2008
flag

4 Answers

vote up 11 vote down check

You can use a GROUP BY to group items by type and id. Then you can use the MAX() Aggregate function to get the most recent service month. The below returns a result set with ChargeId, ChargeType, and MostRecentServiceMonth

SELECT
  CHARGEID,
  CHARGETYPE,
  MAX(SERVICEMONTH) AS "MostRecentServiceMonth"
FROM INVOICE
GROUP BY CHARGEID, CHARGETYPE
link|flag
It's Perfect. Thank you! – jgreep Oct 9 '08 at 21:09
Don't forget to alias the MAX(serviceMonth) field in case you need it downstream. – Ben Hoffstein Oct 9 '08 at 21:15
ok, so what happens if there is a row 101 N 1/1/2008 in the table? – tvanfosson Oct 9 '08 at 21:16
you would get an extra row returned. Which is the desired result based on his requirements. – Carlton Jenke Oct 9 '08 at 21:18
Added alias to the query in post. tvanfosson - that would be a conditional that added to the result set, which is correct. – Mitchel Sellers Oct 9 '08 at 21:19
show 2 more comments
vote up 0 vote down

was very usefull to solve a similar problem. Many thanks...

link|flag
It's great that it helped you. I suspect the reason you were modded down is that this space is for answers to the original question. It's better to just mod the answer or the question up. If you want to comment, it's best to put the comment under the accepted answer. – jgreep May 28 at 21:25
vote up 2 vote down

So this isn't what the requester was asking for but it is the answer to "SQL selecting rows by most recent date".

Modified from http://wiki.lessthandot.com/index.php/Returning_The_Maximum_Value_For_A_Row

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
link|flag
vote up 1 vote down
SELECT chargeId, chargeType, MAX(serviceMonth) AS serviceMonth 
FROM invoice
GROUP BY chargeId, chargeType
link|flag

Your Answer

Get an OpenID
or

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