<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
<In this course, it often helps to include a screenshot of your whole web browser – that lets everyone see what you see. If you wish to include a screenshot, add it below this line.>
<If you wish to copy/paste in your code, you can use this next section. This will allow others to copy/paste your code for testing – something that they won’t be able to do with just a screenshot.>
Here is the problem to solve:
Each of the baked goods is packaged by Baker’s Market exactly five hours, twenty minutes, and two days after the delivery (designated by delivery_time). Create a query returning all the packaging times for the goods in the baked_goods table
I cannot find any thing like a name for a shop called “Baker’s Market” anywhere… I understand what it is asking… just don’t see any data that will allow me to pass the test…
Thoughts?
Be sure to alias the package time column as package_time.
```select delivery_time,
datetime(
delivery_time,
‘5 hours’,
‘20 minutes’,
‘2 days’
) as package_time
from baked_goods
;
<do not remove the three backticks above>