While trying to insert a value into a DATETIME field I get the error:
Error Code: 1292. Incorrect datetime value: '2019-08-13 19:00:00' for column 'my_date_time' at row 1
The insert looks like this:
INSERT INTO `table`(`my_date_time`) VALUES('2019-08-13 19:00:00');
The table is along the lines of:
CREATE TABLE `table` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`my_date_time` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
PS: This is a MySQL 8 database.
my_date_time
look like? PS. Your whole table - xmaster