mysql showing null values for group by statements
- by khelll
I'm doing select sum(clicks), date from stats group by date;, however when the sum is null for some date, the whole row is discarded, I want to see: | null | some_date |, how to do so?
Cheers,