0% found this document useful (0 votes)
23 views

Mysql Date - Format Func

Cut and Paste examples of date_format strings for MySQL. View Source View an HTTP response including headers and HTML source code.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

Mysql Date - Format Func

Cut and Paste examples of date_format strings for MySQL. View Source View an HTTP response including headers and HTML source code.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

MySQL date_format

Business
Contact Me
Docs
SEO Strategy
A strategy for optimising your site for search engines.
Tools
MySQL date_format Examples
Cut and paste examples of date_format strings.
View Source
View an HTTP response including headers and HTML source code.

Cut and Paste date_format strings for MySQL


select date_format(date, '%a %D %b %Y') as formatted_date from table_name;
Where date is the name of your date field, and formatted_date is a variable name which you
can use to retrieve the value.
Top of Form 1

Example Date: 1st April 2005


Replace date with the name of your date field...
date_format String Example
'%e/%c/%Y' 1/4/2005 UK

'%c/%e/%Y' 4/1/2005 US

'%d/%m/%Y' 01/04/2005 UK

'%m/%d/%Y' 04/01/2005 US

'%e/%c/%Y %H:%i' 1/4/2005 12:30 UK

'%c/%e/%Y %H:%i' 4/1/2005 12:30 US

'%d/%m/%Y %H:%i' 01/04/2005 12:30 UK

'%m/%d/%Y %H:%i' 04/01/2005 12:30 US

'%e/%c/%Y %T' 1/4/2005 12:30:10 UK

'%c/%e/%Y %T' 4/1/2005 12:30:10 US

'%d/%m/%Y %T' 01/04/2005 12:30:10 UK

'%m/%d/%Y %T' 04/01/2005 12:30:10 US


'%a %D %b %Y' Fri 1st Apr 2005

'%a %D %b %Y %H:%i' Fri 1st Apr 2005 12:30

'%a %D %b %Y %T' Fri 1st Apr 2005 12:30:10

'%a %b %e %Y' Fri Apr 1 2005

'%a %b %e %Y %H:%i' Fri Apr 1 2005 12:30

'%a %b %e %Y %T' Fri Apr 1 2005 12:30:10

'%W %D %M %Y' Friday 1st April 2005

'%W %D %M %Y %H:%i' Friday 1st April 2005 12:30

'%W %D %M %Y %T' Friday 1st April 2005 12:30:10

You might also like