So my current query is this
"SELECT * FROM articles
WHERE id = :id "
However I'm wondering how am I able to join the articles table onto another table called users.
I'm wanting to do this so that I am able to use the author_id of each article row to grab the username of the author using the articles.author to find the username which matches the author id with the users.id.