翻阅古今
comment---备注说明的意思,如:create table tb_test(id int comment '该列作为记录号');就算你删除那部分,你的语句还是会有错的,因为mysql下auto_increment必须为key,改后如下:CREATE TABLE `hg_pay_exchange` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT primary key COMMENT 'id',`module` varchar(15) NOT NULL,`type` enum('amount','point') NOT NULL,`number` decimal(8,2) NOT NULL)