Als ik je goed begrijp, wil je gewoon de meest recente transactie voor alle gebruikers.
SELECT user_id, trans_date, trans_credit
FROM `table`
GROUP BY user_id
ORDER BY trans_date DESC;
Als ik je goed begrijp, wil je gewoon de meest recente transactie voor alle gebruikers.
SELECT user_id, trans_date, trans_credit
FROM `table`
GROUP BY user_id
ORDER BY trans_date DESC;