1. 程式人生 > >mysql用navicat匯入sql檔案報錯問題

mysql用navicat匯入sql檔案報錯問題

CREATE TABLE `order_charges_detail` ( `id` int(11) NOT NULL AUTO_INCREMENT, `car_order_id` bigint(20) NOT NULL COMMENT '訂單id', `overplus_capital` decimal(10,2) DEFAULT NULL COMMENT '剩餘未還本金', `new_interest` decimal(10,2) DEFAULT NULL COMMENT '今日產生利息', `exceed` decimal(10,0) DEFAULT NULL COMMENT '產生的逾期費'
, `make_date` date NOT NULL COMMENT '費用產生日期', `create_date` datetime NOT NULL **DEFAULT CURRENT_TIMESTAMP** COMMENT '產生時間', PRIMARY KEY (`id`), KEY `FK_7myj6292pytjkquub43qkgdes` (`car_order_id`), CONSTRAINT `FK_7myj6292pytjkquub43qkgdes` FOREIGN KEY (`car_order_id`) REFERENCES `car_order`
(`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='訂單每日產生費用明細表';