Se ho capito bene, vuoi solo ottenere la transazione più recente per tutti gli utenti.
SELECT user_id, trans_date, trans_credit
FROM `table`
GROUP BY user_id
ORDER BY trans_date DESC;
Se ho capito bene, vuoi solo ottenere la transazione più recente per tutti gli utenti.
SELECT user_id, trans_date, trans_credit
FROM `table`
GROUP BY user_id
ORDER BY trans_date DESC;