The default time type (datetime and timestamp) in MySQL has a precision of seconds. If the time value is set with a precision less than a second, it will be rounded off, which may cause the value in the database to be one second more than the original value. In other words, records that originally belonged to today may be recorded tomorrow. Below is an example that demonstrates how time is rounded. First create a table: CREATE TABLE test_time ( time_sec datetime, time_millis datetime(3), time_micros datetime(6), stamp_sec timestamp, stamp_millis timestamp(3), stamp_micros timestamp(6) ); Some readers may not know that datetime and timestamp can be defined with precision. The precision value is 0~6, indicating how many decimal places are retained. The default value is 0. Obviously, retaining 3 digits can be regarded as milliseconds precision, and retaining 6 digits can be regarded as microseconds precision. Then we insert a record: INSERT INTO test_time ( time_sec, time_millis, time_micros, stamp_sec, stamp_millis, stamp_micros ) VALUES( '2019-11-30 12:34:56.987654', '2019-11-30 12:34:56.987654', '2019-11-30 12:34:56.987654', '2019-11-30 12:34:56.987654', '2019-11-30 12:34:56.987654', '2019-11-30 12:34:56.987654' ); Then do another
You can see that the second values of time_sec and stamp_sec in the database are rounded up, and the millisecond values of time_millis and stamp_millis are rounded up. It can be seen that there are two ways to avoid such errors:
Related Documents: MySQL 5.6 Reference: Fractional Seconds in Time Values Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Example of Vue's implementation of the underlying code for simulating responsive principles
>>: How to solve the Docker container startup failure
Table of contents 1. Index 1.1 Concept 1.2 Functi...
Since I returned the Mac, my original laptop has ...
1. Preparation 1.1 Download the tomcat compressed...
Table of contents 1. Example: this can directly g...
Table of contents What does the COUNT function do...
Problem to be solved Mainly for cross-level commu...
Note: You need to give the parent container a hei...
Vue card flip carousel display, while switching d...
Preface This article mainly introduces the releva...
This article example shares the specific code of ...
Flex layout is undoubtedly simple and easy to use...
I installed node to the D drive, and I also neede...
Hyperf official website Hyperf official documenta...
After many difficult single-step debugging late a...
Find the problem Today at work, when copying tabl...