Level 73
If it's not in the database then you will not have it in the result.
To acheive that you need to pull the dates from another table and then show results from that table if it does not exist in the first table. It's quite tricky to acheive that.
Something like this. (Not tested)
SELECT d.date,
(SELECT COUNT(*)
FROM orders o
WHERE o.created_at = d.date) ,
(SELECT SUM(total_price)
FROM orders o2
WHERE o2.created_at = d.date)
FROM dates;