I have a table of users, some of which have articles associated with them, and some of which have type = writer. I'd like to display all users who have articles OR who have type = writer. So, all writers should be displayed, and other user types are only displayed if they have articles.
This is my query so far, which leaves out writers with no articles.
SELECT u.name, u.type, COUNT(a.id) count
FROM users u
LEFT JOIN articles a on u.id = a.writer_id
GROUP BY u.name
HAVING count > 0
Adding the following WHERE clause obviously excludes other user types that have articles.
WHERE u.type = 'writer'
Do I need to do a UNION of these two result sets?