Since there is no outer join (as far as I have found) in MySQL, is there any other way to get a query using a Group By to show nulls? I looked for a function like Oracle's NVL, but couldn't find one for MySQL. Please help!
Here is the query:
SELECT u.username, date_reg, level AS rank, COUNT(p.username) AS posts
FROM mbs_users u, mbs_posts p
WHERE u.username = p.username
ORDER BY posts DESC;
It stips out all the nulls in the mbs_posts table. Any help would be greatly appreciated.