### See here 👉 [Line 108 of 10_Date_Time_Formats.sql](https://github.com/DataWithBaraa/sql-ultimate-course/blob/7896d4a34c620ab8b73a7c607d86975cd7945642/scripts/10_Date_Time_Formats.sql#L108) ### This query generates 'month day' eg.(June 15) value, not minutes without zero. ``` SELECT 'm', FORMAT(GETDATE(), 'm'), 'Minutes without leading zero' ``` <img width="342" alt="Image" src="https://github.com/user-attachments/assets/e5b2683a-0832-4e3f-ab90-96c7a472f9fd" /> ### This is the correct way to make it works. ``` SELECT 'mm (custom)', CAST(CAST(FORMAT(GETDATE(), 'mm') AS INT) AS VARCHAR), 'Minutes without leading zero' ``` <img width="263" alt="Image" src="https://github.com/user-attachments/assets/f195bd50-8331-481d-a349-730ec5c61e44" />