Converting strings to dates in MySQL mainly uses the STR_TO_DATE() function. 1. The basic usage of this function is STR_TO_DATE(str, format), which is used to parse the string str into a date or time value in the specified format format; 2. The return value type can be DATE, DATETIME or TIME, depending on the input string and format; 3. If the format does not match, NULL or an error result may be returned, so the format must be strictly corresponding; 4. Common formats include: %Y (four-digit year), %y (two-digit year), %m (month), %d (date), %H (hour), %i (minute), %s (seconds), etc.; 5. For strings with English month or week names, formats such as %M (full month name), %b (abbreviated month name), %W (full week name), %a (abbreviated week name), etc. can be used; 6. When using it, you need to pay attention to case matching, legal date range (such as the month does not exceed 12, and the date does not exceed the maximum number of days of the month); 7. In addition to query, STR_TO_DATE() is often used in INSERT and UPDATE operations, converting strings to standard date types to save to the database.
In MySQL, converting strings to dates mainly uses the STR_TO_DATE()
function. This function is very practical, especially common when importing data or processing date formats entered by users.

Basic usage
The function of STR_TO_DATE(str, format)
is to parse the string str
into a date or time value according to the specified format
format. Its return value type can be DATE, DATETIME, or TIME, depending on the incoming string and format.
Let's give a simple example:

SELECT STR_TO_DATE('2024-03-15', '%Y-%m-%d');
The result is 2024-03-15
, the type is DATE.
It should be noted that if the format does not match, NULL or an incorrect result may be returned, so the format must be strictly corresponding.

Description of common format characters
Here are some commonly used formats to facilitate you to construct correct expressions based on different strings:
-
%Y
: four-digit year, such as 2024 -
%y
: a double-digit year, such as 24 (note that it will automatically complete to 2024) -
%m
: Month (00-12) -
%d
: Date (00-31) -
%H
: hours (00-23) -
%i
: minutes (00-59) -
%s
or%S
: seconds (00-59)
for example:
SELECT STR_TO_DATE('15/03/2024', '%d/%m/%Y'); -- Result: 2024-03-15 SELECT STR_TO_DATE('03:25:00', '%H:%i:%s'); -- Result: 03:25:00
If the string format you encounter is messy, such as 'March 15, 2024'
, you can also write it like this:
SELECT STR_TO_DATE('March 15, 2024', '%M %d, %Y');
Process date formats with text
Sometimes the string contains the English month or week name, and then the corresponding formatting character needs to be used to correctly identify:
-
%M
: Complete month name (January to December) -
%b
: The abbreviated month name (Jan to Dec) -
%W
: Full name of the week (Sunday to Saturday) -
%a
: The abbreviated week name (Sun to Sat)
For example:
SELECT STR_TO_DATE('Friday, April 5, 2024', '%W, %M %d, %Y'); -- Result: 2024-04-05
Although these formats are common in daily life, you should pay attention to whether the case matches in actual use, otherwise it may not be recognized.
Used in INSERT and UPDATE
In addition to queries, one of the most common uses STR_TO_DATE()
is to convert the string into a date and save it to the database when inserting or updating records.
For example, there is a table orders
, where a field is order_date DATE
, and the data you want to insert is in the form of a string:
INSERT INTO orders (order_date) VALUES (STR_TO_DATE('2024-03-15', '%Y-%m-%d'));
This ensures that the standard DATE type is inserted, not the string.
Things to note
- If the contents in the string cannot be parsed correctly, the function returns NULL.
- Different locale settings may cause the English month or week name recognition to fail.
- The date range must be legal, such as the month cannot exceed 12, and the number of days cannot exceed the maximum number of days of the month.
For example:
SELECT STR_TO_DATE('2024-02-30', '%Y-%m-%d'); -- Return NULL because there is no 30th in February
Basically that's it. Mastering the usage of STR_TO_DATE()
will be much easier when dealing with various date strings. As long as the format is right, there will be basically no errors.
The above is the detailed content of mysql string to date. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

TosecurelyconnecttoaremoteMySQLserver,useSSHtunneling,configureMySQLforremoteaccess,setfirewallrules,andconsiderSSLencryption.First,establishanSSHtunnelwithssh-L3307:localhost:3306user@remote-server-Nandconnectviamysql-h127.0.0.1-P3307.Second,editMyS

ForeignkeysinMySQLensuredataintegritybyenforcingrelationshipsbetweentables.Theypreventorphanedrecords,restrictinvaliddataentry,andcancascadechangesautomatically.BothtablesmustusetheInnoDBstorageengine,andforeignkeycolumnsmustmatchthedatatypeoftherefe

mysqldump is a common tool for performing logical backups of MySQL databases. It generates SQL files containing CREATE and INSERT statements to rebuild the database. 1. It does not back up the original file, but converts the database structure and content into portable SQL commands; 2. It is suitable for small databases or selective recovery, and is not suitable for fast recovery of TB-level data; 3. Common options include --single-transaction, --databases, --all-databases, --routines, etc.; 4. Use mysql command to import during recovery, and can turn off foreign key checks to improve speed; 5. It is recommended to test backup regularly, use compression, and automatic adjustment.

Turn on MySQL slow query logs and analyze locationable performance issues. 1. Edit the configuration file or dynamically set slow_query_log and long_query_time; 2. The log contains key fields such as Query_time, Lock_time, Rows_examined to assist in judging efficiency bottlenecks; 3. Use mysqldumpslow or pt-query-digest tools to efficiently analyze logs; 4. Optimization suggestions include adding indexes, avoiding SELECT*, splitting complex queries, etc. For example, adding an index to user_id can significantly reduce the number of scanned rows and improve query efficiency.

When handling NULL values ??in MySQL, please note: 1. When designing the table, the key fields are set to NOTNULL, and optional fields are allowed NULL; 2. ISNULL or ISNOTNULL must be used with = or !=; 3. IFNULL or COALESCE functions can be used to replace the display default values; 4. Be cautious when using NULL values ??directly when inserting or updating, and pay attention to the data source and ORM framework processing methods. NULL represents an unknown value and does not equal any value, including itself. Therefore, be careful when querying, counting, and connecting tables to avoid missing data or logical errors. Rational use of functions and constraints can effectively reduce interference caused by NULL.

To reset the root password of MySQL, please follow the following steps: 1. Stop the MySQL server, use sudosystemctlstopmysql or sudosystemctlstopmysqld; 2. Start MySQL in --skip-grant-tables mode, execute sudomysqld-skip-grant-tables&; 3. Log in to MySQL and execute the corresponding SQL command to modify the password according to the version, such as FLUSHPRIVILEGES;ALTERUSER'root'@'localhost'IDENTIFIEDBY'your_new

To view the size of the MySQL database and table, you can query the information_schema directly or use the command line tool. 1. Check the entire database size: Execute the SQL statement SELECTtable_schemaAS'Database',SUM(data_length index_length)/1024/1024AS'Size(MB)'FROMinformation_schema.tablesGROUPBYtable_schema; you can get the total size of all databases, or add WHERE conditions to limit the specific database; 2. Check the single table size: use SELECTta

Character set and sorting rules issues are common when cross-platform migration or multi-person development, resulting in garbled code or inconsistent query. There are three core solutions: First, check and unify the character set of database, table, and fields to utf8mb4, view through SHOWCREATEDATABASE/TABLE, and modify it with ALTER statement; second, specify the utf8mb4 character set when the client connects, and set it in connection parameters or execute SETNAMES; third, select the sorting rules reasonably, and recommend using utf8mb4_unicode_ci to ensure the accuracy of comparison and sorting, and specify or modify it through ALTER when building the library and table.
