Ask HN: What is the best data storage service lately?
1 pointsby seanalex0 comments
SELECT a.name, ISNULL(SUM(s.price), 0.0) FROM authors a
INNER JOIN books b ON (a.id=b.author_id)
LEFT OUTER JOIN sales s ON (b.id = s.book_id)
GROUP BY a.name, s.date
HAVING (ISNULL(s.date, '20131101') >= '20131101' AND ISNULL(s.date, '20131101') <= '20131130')
Edit: Actually might be better to keep the null in the results like the original query. It's definitely better to know whether a book sold 1000 copies for $0.00 each or if no copies were sold.
We were not homeschooled for religious reasons. It was purely a choice made by the family during a time when we were traveling after both parents retired. We each had the option at anytime to jump back into the public education system after we moved to Austin, but we opted to continue homeschooling instead.
Would I recommend it for everyone? No. Homeschooling should be dealt with on a case by case basis.