
复制CREATE TABLE `animal` (               `id` int(11) NOT NULL AUTO_INCREMENT,批量
               `name` varchar(20) DEFAULT NULL,               `age` int(11) DEFAULT NULL,               PRIMARY KEY (`id`)             ) ENGINE=InnoDBAUTO_INCREMENT=1 DEFAULT CHARSET=utf8COLLATE=utf8_bin;             INSERT INTO `pilipa_dds`.`student` (`id`, `name`, `age`) VALUES (1, cat, 12);             INSERT INTO `pilipa_dds`.`student` (`id`, `name`, `age`) VALUES (2, dog, 13);             INSERT INTO `pilipa_dds`.`student` (`id`, `name`, `age`) VALUES (3, camel, 25);             INSERT INTO `pilipa_dds`.`student` (`id`, `name`, `age`) VALUES (4, cat, 32);             INSERT INTO `pilipa_dds`.`student` (`id`, `name`, `age`) VALUES (5, dog, 42);             1.2.3.4.5.6.7.8.9.10.11.