Collections:
Converting Character Strings to Dates in MySQL
How To Convert Character Strings to Dates in MySQL?
✍: FYIcenter.com
If you have a character string that represents a date, and you want to convert it into a date value, you can use the STR_TO_DATE(string, format) function. STR_TO_DATE() shares the same formatting codes with DATE_FORMAT() function. The tutorial exercise below shows you some good examples:
SELECT STR_TO_DATE('Friday, January 31, 1997',
'%W, %M %e, %Y') FROM DUAL;
1997-01-31
SELECT STR_TO_DATE('Friday, January 31, 1997, 09:26:50 AM',
'%W, %M %e, %Y, %h:%i:%s %p') FROM DUAL;
1997-01-31 09:26:50
SELECT STR_TO_DATE('31-Jan-1997 09:26:50.000123',
'%d-%b-%Y %H:%i:%s.%f') FROM DUAL;
1997-01-31 09:26:50.000123
⇒ Date and Time Intervals in MySQL
⇐ Converting Dates to Character Strings in MySQL
2017-12-26, 2623🔥, 0💬
Popular Posts:
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...