STR_TO_DATE()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
A description for this Function has not yet been added to this Documentation.
EXAMPLES
SELECT STR_TO_DATE('01,02,2020','%d,%m,%Y');
+--------------------------------------+
| STR_TO_DATE('01,02,2020','%d,%m,%Y') |
+--------------------------------------+
| 2020-02-01 |
+--------------------------------------+
SELECT STR_TO_DATE('September 1, 2019','%M %d,%Y');
+---------------------------------------------+
| STR_TO_DATE('September 1, 2019','%M %d,%Y') |
+---------------------------------------------+
| 2019-09-01 |
+---------------------------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.