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 Formatting Dates and Times

My query is correct, but why is it still throwing an error?

Still throwing an error. BUMMER: your query is in the correct format %m/%y. If anyone could explain why is this the case, I would like to know please.

SELECT title, STRFTIME("%M/%Y", date_released) AS month_year_released FROM movies;

1 Answer

Hi Roxanne,

Try changing the uppercase M to a lowercase m. So %m instead of %M.

%M stands for minute, not month. %m stands for month.

That’s a tricky one. Awesome question.

As far as the error message you received, I think that the message may be written incorrectly in the backend. I think it’s probably meant to say β€œ[Make sure] your query is...”