skip to Main Content

MySQL DATE_FORMAT "%d" issue – Phpmyadmin

I'm sure there's a logic to this, but I do not understand it date_format(date, '%m.%d.%Y') // Output: 03.05.2021 date_format(date, '%D.%m.%Y') // Output: 5th.03.2021 date_format(date, '%e.%m.%Y') // Output: 5.03.2021 But date_format(date, '%d.%m.%Y') // Output: 28.02.2021 There seems to be an issue…

VIEW QUESTION
Back To Top
Search