SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `months` ( `id_month` int(11) NOT NULL AUTO_INCREMENT, `name_month` varchar(50) NOT NULL, PRIMARY KEY (`id_month`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; -- -- Dumping data for table `months` -- INSERT INTO `months` (`id_month`, `name_month`) VALUES (1, 'January'), (2, 'February'), (3, 'March'), (4, 'April'), (5, 'May'), (6, 'June'), (7, 'July'), (8, 'August'), (9, 'September'), (10, 'October'), (11, 'November'), (12, 'December'); -- -------------------------------------------------------- -- -- Table structure for table `prediction` -- CREATE TABLE IF NOT EXISTS `prediction` ( `id_prediction` int(11) NOT NULL AUTO_INCREMENT, `id_month` int(11) DEFAULT NULL, `value_prediction` int(11) DEFAULT NULL, PRIMARY KEY (`id_prediction`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; -- -- Dumping data for table `prediction` -- INSERT INTO `prediction` (`id_prediction`, `id_month`, `value_prediction`) VALUES (1, 1, 1200000), (2, 2, 1500000), (3, 3, 1000000), (4, 4, 5000000), (5, 5, 7500000), (6, 6, 900000), (7, 7, 2250000), (8, 8, 2000000), (9, 9, 1800000), (10, 10, 1750000), (11, 11, 2500000), (12, 12, 2350000);