In MySQL, you can use the DATE_FORMAT() function to format dates. The DATE_FORMAT() function is typically used to format fields of type DATETIME or TIMESTAMP. This function allows you to display dates and times in a specified format. Below are some examples of common date formatting:
-
Show year-month-day:
1SELECT DATE_FORMAT(NOW(), ‘%Y-%m-%d’); -
Show month/day/year:
1[crayon–67efc47970def691717162 inline=“true” class=“prism language-sql”]<span class=“token keyword”>SELECT</span> DATE_FORMAT<span class=“token punctuation”>(</span><span class=“token function”>NOW</span><span class=“token punctuation”>(</span><span class=“token punctuation”>)</span><span class=“token punctuation”>,</span> <span class=“token string”>‘%m/%d/%Y’</span><span class=“token punctuation”>)</span><span class=“token punctuation”>;</span>[/crayon]
Show full date and time:
1 |
SELECT DATE_FORMAT(NOW(), ‘%Y-%m-%d %H:%i:%s’); |
Show hours and minutes:
1 |
SELECT DATE_FORMAT(NOW(), ‘%Y-%m-%d %H:%i:%s’); |
Show day of the week:
1 |
[crayon–67efc47970df3006341061 inline=“true” class=“prism language-sql”]<span class=“token keyword”>SELECT</span> DATE_FORMAT<span class=“token punctuation”>(</span><span class=“token function”>NOW</span><span class=“token punctuation”>(</span><span class=“token punctuation”>)</span><span class=“token punctuation”>,</span> <span class=“token string”>‘%W’</span><span class=“token punctuation”>)</span><span class=“token punctuation”>;</span> <span class=“token comment”>— Day of the week (Sunday=0, ..., Saturday=6)</span> |
[/crayon]
Show the name of the month:
1 |
SELECT DATE_FORMAT(NOW(), ‘%M’); — Name of the month (January, ..., December) |
Show the abbreviation of the month:
1 |
[crayon–67efc47970df6195538592 inline=“true” class=“prism language-sql”]<span class=“token keyword”>SELECT</span> DATE_FORMAT<span class=“token punctuation”>(</span><span class=“token function”>NOW</span><span class=“token punctuation”>(</span><span class=“token punctuation”>)</span><span class=“token punctuation”>,</span> <span class=“token string”>‘%b’</span><span class=“token punctuation”>)</span><span class=“token punctuation”>;</span> <span class=“token comment”>— Abbreviation of the month (Jan, ..., Dec)</span> |
[/crayon]
Show the last two digits of the year:
1 2 3 |
[crayon–67efc47970df8019732725 inline=“true” class=“prism language-sql”]<span class=“token keyword”>SELECT</span> DATE_FORMAT<span class=“token punctuation”>(</span><span class=“token function”>NOW</span><span class=“token punctuation”>(</span><span class=“token punctuation”>)</span><span class=“token punctuation”>,</span> <span class=“token string”>‘%y’</span><span class=“token punctuation”>)</span><span class=“token punctuation”>;</span> <p>These are some basic uses of the <code>DATE_FORMAT() |
function. You can combine different formatting options as needed to create custom date formats.
If you attempt to use DATE_FORMAT() on a non-date/time type field, such as INT or VARCHAR, MySQL will return an error because it cannot interpret these types of data as dates or times.
If you have a non-date/time type field but know that it contains date or time information, you may need to first convert it to a DATETIME type before using the DATE_FORMAT() function. For example, if a VARCHAR field contains a datetime string, you can use the STR_TO_DATE() function to convert it:
<span class="token keyword">SELECT</span> DATE_FORMAT<span class="token punctuation">(</span>STR_TO_DATE<span class="token punctuation">(</span>your_varchar_column<span class="token punctuation">,</span> <span class="token string">'%Y-%m-%d %H:%i:%s'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'%Y-%m-%d %H:%i:%s'</span><span class="token punctuation">)</span><span class="token punctuation">;</span>[/crayon]Here, the STR_TO_DATE() function converts the string to a DATETIME type, and then the DATE_FORMAT() function formats it to the desired format.
Leave a Reply
You must be logged in to post a comment.