Collections:
Converting Dates to Character Strings in MySQL
How To Convert Dates to Character Strings in MySQL?
✍: FYIcenter.com
You can convert dates to character strings using the DATE_FORMAT(date, format) function. MySQL supports the following basic formatting codes:
The tutorial exercise below shows you some good examples:
SELECT DATE_FORMAT('1997-01-31', '%W, %M %e, %Y') FROM DUAL;
Friday, January 31, 1997
SELECT DATE_FORMAT('1997-01-31 09:26:50.000123',
'%W, %M %e, %Y, at %h:%i:%s %p') FROM DUAL;
Friday, January 31, 1997, at 09:26:50 AM |
SELECT DATE_FORMAT('1997-01-31 09:26:50.000123',
'%d-%b-%Y %H:%i:%s.%f') FROM DUAL;
31-Jan-1997 09:26:50.000123
⇒ Converting Character Strings to Dates in MySQL
⇐ Entering Microseconds in SQL Statements in MySQL
2017-12-26, 2503🔥, 0💬
Popular Posts:
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...