mysql> show create table fireway.lm_month_deduct; CREATE TABLE `lm_month_deduct` ( `id` bigint(18) NOT NULL AUTO_INCREMENT, `customer_id` bigint(18) NOT NULL, `contract_id` bigint(18) NOT NULL, `account_id` bigint(18) NOT NULL, `organization` int(5) DEFAULT NULL, `tx_code` int(6) DEFAULT NULL, `tx_date` datetime DEFAULT NULL, `payment_date` datetime DEFAULT NULL, `posting_date` datetime DEFAULT NULL, `posting_flag` varchar(1) DEFAULT NULL, `bjamount` decimal(18,5) DEFAULT NULL, `hjamount` decimal(18,5) DEFAULT NULL, `amount` decimal(18,5) DEFAULT NULL, `partial_amount` decimal(18,2) DEFAULT NULL, `reference_number` varchar(23) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `tenor` int(5) DEFAULT NULL, `dd_debit_card` varchar(21) DEFAULT NULL, `dd_result` varchar(4) DEFAULT NULL, `payment_confirm_date` datetime DEFAULT NULL, `partition_indicator` varchar(2) DEFAULT NULL, `last_update` datetime DEFAULT NULL, `last_update_id` varchar(30) DEFAULT NULL, `dd_bank` varchar(5) DEFAULT NULL, `dd_name` varchar(255) DEFAULT NULL, `source_code` varchar(4) DEFAULT NULL, PRIMARY KEY (`id`), KEY `Index_Lm_Month_Deduct_dd_bank` (`dd_bank`), KEY `Index_Lm_Month_Deduct_customer_id` (`customer_id`), KEY `index_lmd_payment_date` (`payment_date`), KEY `index_lmd_contract_id` (`contract_id`), KEY `index_lmd_customer_id` (`customer_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10947901 DEFAULT CHARSET=utf8
# 客户花了5个小时完成了该表数据的导入,该表6个G
|