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
