创建student表 CREATE TABLE IF NOT EXISTS `student` ( `id` int(4) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(12) NOT NULL, `sex` enum('男','女') NOT NULL DEFAULT '男', `age` tinyint(4) NOT NULL DEFAULT '24', `edu` enum('初中','高中','大专','大本','研究生') NOT N…