microseconds component is removed.
mysql>
mysql>
mysql> CREATE TABLE TIMESTAMP_TABLE (COLUMN1 TIMESTAMP);
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> INSERT INTO TIMESTAMP_TABLE VALUES ('1980-12-08 23:59:59.59');
Query OK, 1 row affected (0.00 sec)
mysql>
mysql> SELECT COLUMN1 FROM TIMESTAMP_TABLE;
+---------------------+
| COLUMN1 |
+---------------------+
| 1980-12-08 23:59:59 |
+---------------------+
1 row in set (0.00 sec)
mysql>
mysql> drop table TIMESTAMP_TABLE;
Query OK, 0 rows affected (0.00 sec)
mysql>
Related examples in the same category