This question already has an answer here:
- Convert a date format in PHP 15 answers
I have stored date in MySQL in the format yyyy-mm-dd and I wish to display it on the form like
ddMMMMyyyy
How can I do that
Use DATE_FORMAT()
select date_format(date_column, '%d %M %Y')
from your_table
Try it.
CONVERT(VARCHAR(11),GETDATE(),106)
来源:https://stackoverflow.com/questions/21160915/convert-date-from-yyyy-mm-dd-to-dd-month-name-year