I'm trying to create a query but i'm having some trouble with it. I have two tables:
- users (id, name, email)
- comments (id, uid, comment, date, time)
I'm trying to list all users and their comments, which can be done quite easily with an inner join. However, i get various comments per user, since i joined the result. I just want their latest comment. Any ideas? :)