Skip to main content

Hi! I’m working on a database that tracks kittens placed in foster for a shelter. I know how to use DATETIME_DIFF to get weeks, but am hoping to get weeks and days. Ideally, I would like to have it read XwYd. Can anybody help?

To get the remaining number of days, you need to use DATETIME_DIFF to get the time in days, then use MOD to find the remainder after dividing by 7.


MOD( 
DATETIME_DIFF({end date}, {start date}, 'days'),
7
)

Reply