show/hide this revision's text 4 Corrected spelling

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

SELECT
  CHARGEID,
  CHARGETYPE,
  MAX(SERVICEMONTH) AS "MostRecentServiceMonth"
FROM INVOICE
GROUP BY CHARGEID, CHARGETYPE
show/hide this revision's text 3 Additional clarification, justification, renaming

Just

You can use a simple group by to group items bey type and query, since id. Then you don't need any other infocan use the MAX() Agggregate function to get the most recent service month. The below returns a resultset with ChargeId, ChargeType, and MostRecentServiceMonth

SELECT
  CHARGEID,
  CHARGETYPE,
  MAX(SERVICEMONTH) AS "MaxServiceMonth"
MostRecentServiceMonth"
FROM INVOICE
GROUP BY CHARGEID, CHARGETYPE
show/hide this revision's text 2 Added alias to column

Just use a group by and query, since you don't need any other info.

SELECT
  CHARGEID,
  CHARGETYPE,
  MAX(SERVICEMONTH) AS "MaxServiceMonth"
FROM INVOICE
GROUP BY CHARGEID, CHARGETYPE
show/hide this revision's text 1