I've tried to look, but I can't get a query working.
I have a table called 'replies' and a table called 'users'. 'Replies' had a column called 'used_ID'. I need to get everything from 'replies' and the 'username' of the 'id' 'user_ID'.
This is what I tried:
SELECT *.replies, users.username
FROM replies * left join users username
on users.id=replies.added_by
I have to make it in one query, but I just don't know how.