Incorrect Datetime Value: Resolving MySQL Error 1292
When converting an existing database with datetime values stored as '0000-00-00 00:00:00', users may encounter MySQL error 1292: "Incorrect datetime value." This error occurs due to version conflicts between the original MySQL database (e.g., 5.1) and newer versions (e.g., 5.7), which handle datetime values differently.
To resolve this issue, the following steps can be taken:
Option 1: Convert '0000-00-00 00:00:00' to NULL
- Attempt to convert datetime columns with '0000-00-00 00:00:00' to NULL using the following query:
ALTER TABLE users MODIFY created datetime NULL DEFAULT '1970-01-01 00:00:00';
If this fails, proceed to Option 2.
Option 2: Use CHAR Conversion
- Update the affected rows by setting the datetime column to NULL only if its value is '0000-00-00 00:00:00' as a character string:
UPDATE users SET created = NULL WHERE CAST(created AS CHAR(20)) = '0000-00-00 00:00:00';
This alternative query uses the CAST function to convert datetime values to a character string of 20 characters and only updates rows where the result matches '0000-00-00 00:00:00'.
Once the updates are complete, you should be able to successfully modify the database table's character set and collation without encountering the Incorrect datetime value error.
The above is the detailed content of How to Fix MySQL Error 1292: \'Incorrect datetime value\'?. For more information, please follow other related articles on the PHP Chinese website!

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

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

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

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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