How can I combine these two query's together if possible? I want to be able to find all the articles first and then find there comments
Here is query 1
SELECT *
FROM users_articles
INNER JOIN users ON users_articles.user_id = users.user_id
AND users.active IS NULL
AND users.deletion = 0
Here is query 2
SELECT *
FROM articles_comments
INNER JOIN users ON articles_comments.user_id = users.user_id