I was using int
type for storing datetime type data. For the convenience of getting the data in specific range from MySQL, I tried changing it to TIMESTAM
When defining a DATETIME or TIMESTAMP field, there's no need to specify the length.
This is what the error message refers to:
A DATETIME or TIMESTAMP value can include a trailing fractional seconds part in up to microseconds (6 digits) precision
MySQL permits fractional seconds for TIME, DATETIME, and TIMESTAMP values, with up to microseconds (6 digits) precision. To define a column that includes a fractional seconds part, use the syntax type_name(fsp), where type_name is TIME, DATETIME, or TIMESTAMP, and fsp is the fractional seconds precision. For example:
CREATE TABLE t1 (t TIME(3), dt DATETIME(6));
Abstract from CREATE TABLE Syntax:
| TIME[(fsp)]
| TIMESTAMP[(fsp)]
| DATETIME[(fsp)]
Documentation: