-- Table structure for table `section_a` -- CREATE TABLE IF NOT EXISTS `section_a` ( `id` int(2) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `age` int(2) NOT NULL, `mark` int(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `section_a` -- INSERT INTO `section_a` (`id`, `name`, `age`, `mark`) VALUES (1, 'Alex', 17, 40), (2, 'Rohn', 18, 44), (3, 'Greek', 18, 46), (4, 'Lorn', 20, 44), (5, 'Ravi', 20, 48), (6, 'Jem', 19, 43); -- -------------------------------------------------------- -- -- Table structure for table `section_b` -- CREATE TABLE IF NOT EXISTS `section_b` ( `id` int(2) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `age` int(2) NOT NULL, `mark` int(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `section_b` -- INSERT INTO `section_b` (`id`, `name`, `age`, `mark`) VALUES (1, 'Big', 20, 45), (2, 'Remi', 19, 46), (3, 'Greek', 18, 46), (4, 'Lorn', 20, 44), (5, 'Pickn', 21, 49), (6, 'Tayler', 20, 41);