-- -- 表的结构 `Student` -- DROP TABLE IF EXISTS `Student`; CREATE TABLE IF NOT EXISTS `Student` ( `sid` bigint(11) NOT NULL, `sname` varchar(20) NOT NULL, `sage` varchar(20) NOT NULL, PRIMARY KEY (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;