Milliseconds are automatically part of the DATETIME data type since MySQL 5.6.4 and there is no parameter for the DATETIME data type so you simply need to remove the (3) from your statement as the error indicates. ALTER TABLE `tempTrades` MODIFY `TradeUTC` DATETIME;
↧