Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases Reporting with SQL Date and Time Functions Practice Session

Loans Due solution

Hi,

The Loans Due practice question was nice. I've researched and came up with this:

SELECT * FROM loans WHERE return_by BETWEEN DATE('now', 'weekday 0', '-6 days') AND DATE('now', 'weekday 0') AND returned_on IS null;

Did anybody found a cleaner/more compact solution? :)

Cheers!

9 Answers

Hi this is my solution SELECT * FROM loans WHERE STRFTIME("%W", return_by) = STRFTIME("%W", "now") AND returned_on IS NULL;

SELECT * FROM loans WHERE return_by BETWEEN DATE("now") AND DATE("now", "+7 days") AND returned_on IS NULL;

SELECT * FROM loans WHERE returned_on > return_by OR returned_on IS NULL;

:))))

How's mine?

SELECT * FROM loans WHERE return_by BETWEEN DATE("now", "+1 week") AND returned_on IS NULL;

select * from loans where return_by BETWEEN DATE("now", "+ 7days") and returned_on is null

SELECT  *
FROM  loans
WHERE return_by BETWEEN DATE('now', 'weekday 0') AND DATE('now', 'weekday 0', "+6 days")
      AND returned_on IS NULL
;

I believe I have the most compact code!

SELECT * FROM loans WHERE STRFTIME("%w", return_by) AND returned_on IS NULL (optional)

Surprisingly was one of my first attempts at the question :)

This is how I wrote it: SELECT * FROM loans WHERE return_by BETWEEN DATE("now", "-1 day") AND DATE("now", "+6 days") AND returned_on IS NULL;

When I completed this it was the week of 02/13/17 through 02/19/17 and the day I completed it on was 02/14/17.

I did this on today so 3/23 and this is how I did it.

SELECT * FROM loans WHERE return_by BETWEEN DATE("now", "-7 days") AND DATE("now", "+1 days");