@b1nary : I already tried it but it still shows the same result.
If I try the below query:
SELECT users.fname,users.lname,users.username, COUNT(*) FROM users INNER JOIN feedbacks on users.username = feedbacks.username where users.username = 'tl0tr' and month(feedbacks.create_date) = 8
It gives the result as :
fname = NULL
lname = NULL
username = NULL
COUNT(*) = 0
I think this is the problem. Its not displaying the data over here and hence not displaying it when I run the query for all the users. Any ideas ?