Show via query how many days remain until Christmas. Round fractional days up using the numeric function ROUND.
SELECT ROUND(DAYOFYEAR('2024-12-25') - DAYOFYEAR(CURDATE())) AS DaysUntilChristmas;
+--------------------+ | DaysUntilChristmas | +--------------------+ | 218 | +--------------------+