The MYSQL query below gives me the output I need when there are records found in the main query e.g.
RETURN:
username | total_favs
this_user | 4
But I get nothing return if no records found in main query. I want to get something like this:
RETURN:
username | total_favs
null | 4
SELECT
c.username,
(SELECT COUNT(*) AS total_records FROM favourites f WHERE f.pic_id = 177) AS `total_favs`
FROM
comments c
WHERE
c.pic_id = 177