De normale methode is om het resultaat in DESC-volgorde te ordenen en het resultaat te BEPERKEN tot 1 rij
SELECT Id, dept_id, mat_code, topic
WHERE dept_id = 'something'
ORDER BY Id DESC
LIMIT 1
De normale methode is om het resultaat in DESC-volgorde te ordenen en het resultaat te BEPERKEN tot 1 rij
SELECT Id, dept_id, mat_code, topic
WHERE dept_id = 'something'
ORDER BY Id DESC
LIMIT 1