CREATE TABLE IF NOT EXISTS `student3` ( `id` int(2) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `class` varchar(10) NOT NULL DEFAULT '', `social` int(3) NOT NULL DEFAULT '0', `science` int(3) NOT NULL, `math` int(3) NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `student3` -- INSERT INTO `student3` (`id`, `name`, `class`, `social`, `science`, `math`) VALUES (2, 'Max Ruin', 'Three', 85, 56, 85), (3, 'Arnold', 'Three', 55, 40, 75), (4, 'Krish Star', 'Four', 60, 50, 70), (5, 'John Mike', 'Four', 60, 80, 90), (6, 'Alex John', 'Four', 55, 90, 80), (7, 'My John Rob', 'Fifth', 78, 60, 70), (8, 'Asruid', 'Five', 85, 80, 90), (9, 'Tes Qry', 'Six', 78, 60, 70), (10, 'Big John', 'Four', 55, 40, 55);