Possible Duplicate:
Specific Date Format in mysql

select date from table returns 20111010

what select FORMATFUNC(????, date,?) from table returns October 10, 2011?

mysql but there has to be sum dum standard right

link|improve this question
feedback

closed as exact duplicate by Jason, James Hill, mellamokb, Adrian, Andriy M Oct 10 '11 at 18:16

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

You need DATE_FORMAT().

Syntax:

SELECT DATE_FORMAT('2011-10-10 19:46:00', '%M %d, %Y');
link|improve this answer
2  
+1 Looks good. Although, you might want to also add a comma between %d and %Y: sqlize.com/QW8R1tq3c9 – mellamokb Oct 10 '11 at 17:51
You're right, I over-read the comma in the question. I just added it in my answer. Thank you! – Christian Specht Oct 10 '11 at 18:03
feedback

its probably something like

SELECT DATE_FORMAT('2009-10-04 22:23:00', '%M %d, %Y');

and if you need more options read this: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.