CREATE TABLE `myTable` ( `id` mediumint(8) unsigned NOT NULL auto_increment, `value` mediumint default NULL, `date` varchar(100) default NULL, `person` varchar(100) default NULL, `country` varchar(100) default NULL, `company` varchar(100) default NULL, `quantity` mediumint default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=1; INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (1, 827.3646680896663, "05/11/2015", "Michael", "Belgium", "Dell", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (2, 789.9342269067201, "10/23/2015", "Robert", "Australia", "Google", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (3, 759.35223181884, "08/26/2015", "Anne", "United Kingdom", "Apple", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (4, 213.7449612796206, "02/18/2013", "Mary", "Canada", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (5, 320.14114657420225, "07/22/2012", "Georgia", "United States", "Adobe", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (6, 149.06246813387892, "07/12/2012", "John", "Canada", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (7, 997.4128794571352, "12/31/2013", "Michael", "United States", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (8, 549.5801491956677, "07/11/2013", "Robert", "Netherlands", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (9, 605.2329749815987, "12/12/2015", "Michael", "Belgium", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (10, 870.9928730754984, "05/01/2013", "Robert", "Netherlands", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (11, 358.5408123441661, "06/04/2012", "Anne", "Belgium", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (12, 190.0034681150248, "04/24/2015", "John", "Australia", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (13, 961.3269424098635, "11/04/2013", "Michael", "United Kingdom", "Google", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (14, 278.41478478726054, "03/28/2012", "Robert", "Canada", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (15, 925.6911193503129, "12/12/2014", "Michael", "United Kingdom", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (16, 552.0129741089338, "02/08/2015", "Mary", "Canada", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (17, 634.6177193266666, "08/02/2013", "Anne", "Belgium", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (18, 804.0076066180185, "02/17/2012", "Robert", "Netherlands", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (19, 119.7960984741494, "05/06/2014", "Michael", "United Kingdom", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (20, 134.96246373817377, "08/05/2012", "Mary", "Netherlands", "Google", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (21, 121.31523198706418, "06/20/2015", "Michael", "United Kingdom", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (22, 638.5292824656726, "09/14/2013", "John", "Canada", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (23, 440.5072346543616, "03/03/2015", "Georgia", "Belgium", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (24, 41.420263344155046, "12/03/2015", "Robert", "Australia", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (25, 296.44205706773386, "09/03/2012", "Michael", "Belgium", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (26, 166.45361748720433, "09/17/2012", "Mary", "Canada", "Microsoft", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (27, 124.0801684833569, "07/30/2014", "Anne", "United Kingdom", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (28, 742.6337915951368, "06/21/2015", "Mary", "Canada", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (29, 788.8524251068288, "12/02/2015", "Georgia", "United Kingdom", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (30, 123.92471495446766, "10/19/2012", "Robert", "Australia", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (31, 640.3968018574469, "10/17/2015", "Michael", "United States", "Adobe", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (32, 200.86687636953837, "07/06/2014", "Robert", "Netherlands", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (33, 474.32466726148994, "01/18/2016", "Georgia", "United Kingdom", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (34, 544.7350811727282, "04/16/2014", "Robert", "Netherlands", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (35, 500.8784962422198, "08/21/2013", "Georgia", "United Kingdom", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (36, 760.915290132873, "11/12/2014", "John", "Canada", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (37, 646.8090575793711, "05/04/2012", "Georgia", "Belgium", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (38, 785.2703441345622, "08/14/2015", "Robert", "Netherlands", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (39, 718.0151119286952, "12/29/2015", "Georgia", "United Kingdom", "Adobe", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (40, 544.9320604820075, "09/23/2012", "Robert", "Netherlands", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (41, 548.1203555041272, "09/18/2014", "Georgia", "United Kingdom", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (42, 656.1940845996116, "03/26/2015", "John", "Canada", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (43, 888.2905406896534, "01/08/2016", "Michael", "Belgium", "Dell", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (44, 743.5930076153331, "02/14/2015", "Mary", "Canada", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (45, 266.0097060716279, "04/23/2015", "Anne", "United Kingdom", "Google", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (46, 643.2327522372174, "10/19/2014", "Mary", "Australia", "Google", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (47, 839.786972940007, "07/04/2012", "Georgia", "United Kingdom", "Dell", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (48, 634.2289617929921, "04/03/2016", "John", "Canada", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (49, 556.2910906058523, "11/30/2012", "Georgia", "Belgium", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (50, 406.39372336198045, "09/29/2013", "Mary", "Australia", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (51, 221.53212269078415, "09/15/2015", "Georgia", "United States", "Adobe", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (52, 118.728612415408, "05/29/2014", "Mary", "Canada", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (53, 383.64004705257196, "03/02/2016", "Anne", "Belgium", "Apple", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (54, 69.07868330043831, "11/01/2014", "John", "Canada", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (55, 161.99707682734078, "06/13/2013", "Anne", "United Kingdom", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (56, 502.04629418581294, "10/07/2015", "Mary", "Netherlands", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (57, 912.1658681793366, "04/20/2014", "Anne", "Belgium", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (58, 959.8439287823483, "10/01/2013", "John", "Netherlands", "Adobe", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (59, 765.6805322702326, "01/30/2016", "Michael", "Belgium", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (60, 167.3954329351889, "03/29/2015", "John", "Canada", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (61, 205.20161444653596, "09/12/2012", "Michael", "Belgium", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (62, 14.675975326350676, "11/20/2013", "John", "Netherlands", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (63, 284.2618903547708, "05/26/2013", "Georgia", "United States", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (64, 128.6436823980578, "04/20/2012", "Mary", "Australia", "Apple", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (65, 839.9701155004359, "10/21/2012", "Anne", "Belgium", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (66, 722.1632636287446, "06/23/2014", "John", "Australia", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (67, 775.5013606094924, "11/29/2014", "Michael", "United States", "Apple", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (68, 979.3869123068667, "02/18/2014", "Mary", "Australia", "Dell", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (69, 737.930435472743, "10/30/2014", "Michael", "United Kingdom", "Apple", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (70, 642.2458065723046, "05/24/2013", "Robert", "Australia", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (71, 869.9523011485045, "06/26/2013", "Georgia", "United States", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (72, 998.4931501481743, "07/13/2014", "Robert", "Netherlands", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (73, 149.28878266294754, "03/03/2015", "Anne", "Belgium", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (74, 434.6167014668726, "07/21/2013", "Robert", "Australia", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (75, 153.78009045250096, "03/31/2013", "Georgia", "United Kingdom", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (76, 329.8092353556316, "04/29/2013", "Robert", "Australia", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (77, 216.93990240399097, "01/31/2015", "Anne", "United States", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (78, 923.7978685266082, "03/04/2013", "Robert", "Canada", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (79, 700.7140368308543, "07/08/2013", "Anne", "Belgium", "Google", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (80, 872.7462615502234, "05/30/2012", "John", "Australia", "Microsoft", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (81, 919.3065667846238, "01/02/2015", "Anne", "United States", "Google", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (82, 766.016458613583, "11/07/2013", "John", "Netherlands", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (83, 334.1282038540211, "11/15/2013", "Michael", "Belgium", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (84, 21.429413939436092, "07/01/2013", "John", "Australia", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (85, 235.07140218549105, "09/17/2014", "Georgia", "United States", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (86, 799.7951742579069, "01/15/2016", "Robert", "Australia", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (87, 235.16167684405332, "09/25/2015", "Anne", "United Kingdom", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (88, 214.5498419358466, "07/15/2014", "Mary", "Netherlands", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (89, 387.9793145236524, "03/08/2016", "Georgia", "Belgium", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (90, 956.870323397676, "09/22/2014", "Mary", "Canada", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (91, 22.929514425368836, "12/21/2015", "Anne", "United Kingdom", "Google", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (92, 211.25071690884835, "03/25/2016", "Mary", "Australia", "Apple", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (93, 251.17047760121415, "01/20/2012", "Georgia", "Belgium", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (94, 694.3796734105775, "10/07/2015", "Mary", "Netherlands", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (95, 228.169639886601, "03/18/2012", "Michael", "Belgium", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (96, 861.0071849401832, "01/13/2015", "Robert", "Canada", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (97, 190.51229864645103, "06/18/2012", "Georgia", "Belgium", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (98, 161.14399921749535, "01/11/2014", "Robert", "Australia", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (99, 838.0063023246388, "10/03/2012", "Anne", "Belgium", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (100, 471.822822720266, "08/16/2014", "Robert", "Canada", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (101, 226.28006280088576, "01/21/2015", "Michael", "United States", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (102, 809.8908929666387, "12/10/2014", "John", "Australia", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (103, 220.08448905273147, "04/21/2013", "Anne", "United States", "Google", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (104, 577.6795223913641, "03/27/2012", "Robert", "Canada", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (105, 579.1281511628084, "03/24/2012", "Anne", "United Kingdom", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (106, 676.1347322915686, "06/05/2015", "John", "Australia", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (107, 86.88593094499086, "01/31/2014", "Anne", "United Kingdom", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (108, 235.32056757105047, "04/11/2012", "Robert", "Australia", "Microsoft", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (109, 740.6002434474998, "09/14/2015", "Georgia", "United Kingdom", "Microsoft", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (110, 630.321126272763, "04/29/2012", "Robert", "Australia", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (111, 21.18171183610562, "07/06/2014", "Anne", "Belgium", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (112, 245.13010687937663, "08/18/2015", "Mary", "Netherlands", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (113, 651.5621132362967, "09/13/2015", "Michael", "United Kingdom", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (114, 33.30486520609044, "11/11/2015", "Mary", "Netherlands", "Dell", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (115, 790.9239138431717, "07/31/2013", "Georgia", "United States", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (116, 547.061041909375, "11/20/2014", "John", "Canada", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (117, 860.8994920718706, "12/16/2012", "Anne", "United Kingdom", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (118, 691.388465120716, "10/20/2014", "John", "Australia", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (119, 913.3233554815804, "07/21/2015", "Michael", "United Kingdom", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (120, 260.03502992901116, "04/03/2014", "John", "Netherlands", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (121, 385.9464528991495, "07/08/2012", "Michael", "United Kingdom", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (122, 165.859430560254, "02/25/2016", "Robert", "Canada", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (123, 332.6845445890031, "05/20/2014", "Anne", "Belgium", "Apple", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (124, 39.80798970017252, "10/26/2012", "Mary", "Australia", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (125, 557.1170536474045, "12/10/2012", "Michael", "United States", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (126, 563.4445651078194, "04/01/2015", "Mary", "Canada", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (127, 520.166950585608, "04/27/2014", "Michael", "Belgium", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (128, 90.51328098309119, "08/29/2015", "John", "Canada", "Microsoft", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (129, 184.17937855085643, "02/14/2012", "Michael", "United States", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (130, 213.20540393191234, "11/17/2014", "John", "Canada", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (131, 63.85420672897146, "03/12/2016", "Michael", "United States", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (132, 632.0472139438672, "08/29/2014", "Mary", "Canada", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (133, 708.3654142090282, "10/03/2013", "Georgia", "United States", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (134, 182.67631726104338, "08/04/2015", "John", "Australia", "Dell", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (135, 54.33071758768448, "03/09/2015", "Georgia", "United States", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (136, 696.0626980805546, "04/22/2013", "Mary", "Canada", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (137, 452.02595664468527, "11/11/2012", "Georgia", "United Kingdom", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (138, 334.5008670381967, "11/06/2012", "Mary", "Netherlands", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (139, 741.7508314184272, "02/02/2015", "Anne", "United Kingdom", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (140, 134.48301098466476, "08/27/2014", "Mary", "Canada", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (141, 503.11666104643825, "04/29/2012", "Anne", "United States", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (142, 669.5016541115112, "07/30/2014", "Mary", "Netherlands", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (143, 399.9924732657582, "04/02/2015", "Anne", "United Kingdom", "Apple", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (144, 602.4788739170393, "01/12/2012", "John", "Australia", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (145, 13.758654404650738, "10/08/2015", "Anne", "United Kingdom", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (146, 816.3660774249673, "01/15/2012", "Robert", "Netherlands", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (147, 15.065725223151526, "03/06/2015", "Anne", "United States", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (148, 451.96524137301253, "08/02/2014", "Mary", "Australia", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (149, 717.9015880306163, "02/07/2014", "Anne", "Belgium", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (150, 698.6238799141323, "03/04/2013", "John", "Netherlands", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (151, 699.7487612003258, "12/31/2014", "Michael", "Belgium", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (152, 634.0920763304166, "04/11/2013", "John", "Netherlands", "Apple", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (153, 477.1493111978568, "04/11/2014", "Anne", "United Kingdom", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (154, 737.3605127232445, "04/12/2012", "John", "Canada", "Adobe", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (155, 471.53803919010215, "07/14/2015", "Anne", "Belgium", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (156, 389.1819602469392, "02/10/2015", "Robert", "Australia", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (157, 15.82587966547233, "10/10/2015", "Anne", "United Kingdom", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (158, 876.8079553404166, "03/03/2013", "John", "Australia", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (159, 379.91518472056606, "10/27/2015", "Michael", "Belgium", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (160, 793.9204931632561, "11/20/2014", "John", "Canada", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (161, 204.69125183192273, "09/29/2014", "Anne", "United States", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (162, 196.99914591589805, "02/02/2013", "Robert", "Australia", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (163, 245.57624103479537, "12/09/2012", "Georgia", "United Kingdom", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (164, 431.22046798087587, "10/21/2013", "Robert", "Australia", "Google", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (165, 943.8515689968013, "10/19/2012", "Michael", "United Kingdom", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (166, 8.051967591297004, "02/08/2012", "John", "Netherlands", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (167, 540.0120716368281, "05/15/2012", "Georgia", "United Kingdom", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (168, 520.2756390148121, "09/30/2013", "Robert", "Australia", "Microsoft", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (169, 938.0071592528146, "10/08/2013", "Anne", "United States", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (170, 649.5637409951288, "03/27/2013", "Robert", "Australia", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (171, 602.1945588268113, "03/24/2014", "Georgia", "United States", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (172, 436.46469894204563, "11/19/2014", "Robert", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (173, 835.2898169647934, "08/05/2015", "Anne", "United States", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (174, 5.425295264871787, "07/16/2015", "Robert", "Netherlands", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (175, 647.0012412567961, "04/08/2014", "Georgia", "United Kingdom", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (176, 694.6268929541161, "07/26/2014", "John", "Australia", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (177, 866.8728881702673, "08/11/2013", "Michael", "United Kingdom", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (178, 270.5778244535261, "11/29/2012", "John", "Canada", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (179, 486.9931723509039, "01/24/2012", "Georgia", "United Kingdom", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (180, 344.0567670326252, "07/09/2013", "John", "Australia", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (181, 58.27465491001338, "10/09/2015", "Georgia", "United States", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (182, 729.4596645509218, "03/23/2014", "Mary", "Netherlands", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (183, 270.1988667735845, "07/27/2015", "Michael", "Belgium", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (184, 777.1184845689901, "01/31/2013", "Mary", "Netherlands", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (185, 70.00843286754954, "11/04/2015", "Georgia", "United Kingdom", "Adobe", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (186, 203.69536946762457, "09/04/2014", "Mary", "Canada", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (187, 280.63162233194794, "07/13/2013", "Georgia", "United Kingdom", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (188, 97.97883858057321, "10/28/2015", "Mary", "Australia", "Apple", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (189, 464.6465499878717, "07/05/2013", "Anne", "United States", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (190, 58.398038188303914, "07/01/2012", "Mary", "Australia", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (191, 200.3946808030491, "01/20/2012", "Georgia", "Belgium", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (192, 180.89468169420576, "12/29/2012", "Mary", "Australia", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (193, 204.94888390355703, "03/05/2016", "Michael", "United States", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (194, 981.2828066339506, "04/14/2014", "Robert", "Canada", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (195, 394.11316691551656, "06/19/2012", "Michael", "United States", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (196, 272.2034724511023, "01/09/2012", "Mary", "Canada", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (197, 917.2376634819018, "05/26/2014", "Michael", "Belgium", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (198, 261.17441144486344, "04/09/2012", "Robert", "Australia", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (199, 489.6830394645194, "10/14/2012", "Anne", "Belgium", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (200, 474.06883307091607, "02/26/2012", "John", "Australia", "Apple", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (201, 841.587571962013, "03/12/2014", "Georgia", "United Kingdom", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (202, 227.0852029605813, "08/01/2013", "Robert", "Australia", "Microsoft", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (203, 568.0503331612317, "11/21/2014", "Georgia", "Belgium", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (204, 870.313981751437, "06/11/2014", "Robert", "Australia", "Apple", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (205, 842.4316581522831, "02/08/2015", "Michael", "United Kingdom", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (206, 927.9969757738223, "04/15/2013", "Robert", "Australia", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (207, 921.0819764215021, "11/05/2014", "Michael", "Belgium", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (208, 867.9120722920849, "08/23/2012", "Robert", "Canada", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (209, 701.2759553204517, "08/14/2015", "Michael", "United Kingdom", "Adobe", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (210, 686.1212964570357, "04/02/2012", "Mary", "Australia", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (211, 425.03541459779115, "08/02/2015", "Georgia", "United Kingdom", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (212, 358.1701608687312, "11/26/2012", "John", "Netherlands", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (213, 944.4973635580519, "12/05/2014", "Georgia", "United Kingdom", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (214, 261.8243757620072, "12/18/2015", "Mary", "Netherlands", "Apple", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (215, 308.4196853744886, "03/09/2013", "Anne", "United Kingdom", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (216, 448.85940606503516, "01/22/2016", "Robert", "Australia", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (217, 791.2349280685444, "09/18/2015", "Anne", "United Kingdom", "Adobe", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (218, 377.16386351651744, "07/11/2012", "Mary", "Australia", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (219, 700.0041776512672, "08/23/2012", "Anne", "United Kingdom", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (220, 684.7590813524521, "06/25/2012", "Mary", "Canada", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (221, 717.2867040139764, "12/25/2015", "Anne", "United Kingdom", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (222, 24.089772736875513, "01/02/2012", "John", "Canada", "Adobe", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (223, 371.4150408165472, "04/13/2016", "Georgia", "Belgium", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (224, 905.4930635751922, "07/29/2014", "Mary", "Netherlands", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (225, 836.2549966915257, "09/07/2014", "Anne", "Belgium", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (226, 888.4254899566056, "08/07/2015", "John", "Australia", "Dell", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (227, 773.5002547951653, "05/08/2013", "Georgia", "Belgium", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (228, 376.2173635465872, "09/26/2015", "John", "Australia", "Microsoft", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (229, 675.3533167205655, "03/20/2013", "Michael", "United Kingdom", "Microsoft", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (230, 696.1682533844845, "06/08/2014", "Mary", "Netherlands", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (231, 336.06180976559443, "02/18/2013", "Georgia", "Belgium", "Dell", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (232, 165.21800966221122, "09/24/2012", "Robert", "Canada", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (233, 530.6469159058983, "03/11/2014", "Anne", "Belgium", "Adobe", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (234, 42.978973093718785, "02/06/2014", "Mary", "Australia", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (235, 719.4710933077043, "05/08/2015", "Michael", "United Kingdom", "Google", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (236, 459.9162254323147, "07/01/2015", "John", "Canada", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (237, 57.47051806986592, "09/22/2014", "Anne", "United States", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (238, 712.2280127899, "01/15/2016", "Mary", "Canada", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (239, 85.01529263447172, "06/30/2015", "Michael", "United Kingdom", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (240, 147.40740548011343, "12/07/2015", "John", "Australia", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (241, 164.27037844654413, "07/18/2013", "Georgia", "Belgium", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (242, 49.760915703285775, "09/18/2014", "Robert", "Netherlands", "Dell", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (243, 700.0276707808456, "08/27/2015", "Anne", "Belgium", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (244, 991.7777727703171, "11/26/2012", "Robert", "Australia", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (245, 884.7515290302875, "07/19/2012", "Anne", "United Kingdom", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (246, 208.5324465415982, "03/02/2015", "Mary", "Australia", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (247, 146.51608576826314, "12/13/2013", "Georgia", "Belgium", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (248, 89.51612317050517, "07/23/2015", "Robert", "Australia", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (249, 100.3381692473312, "08/29/2012", "Anne", "Belgium", "Google", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (250, 78.03595405971586, "05/08/2015", "Robert", "Australia", "Apple", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (251, 394.4309129057112, "07/28/2013", "Georgia", "United States", "Adobe", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (252, 62.33719783332814, "12/24/2014", "Robert", "Australia", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (253, 128.59916518006764, "07/10/2013", "Anne", "United Kingdom", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (254, 151.2969484782699, "08/01/2012", "John", "Netherlands", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (255, 711.0211792528344, "03/27/2012", "Anne", "United States", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (256, 825.5516060482183, "05/11/2014", "Robert", "Netherlands", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (257, 273.3905667356532, "01/03/2014", "Michael", "United Kingdom", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (258, 75.96285358299781, "09/24/2012", "John", "Netherlands", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (259, 218.20462344698242, "09/14/2014", "Georgia", "United States", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (260, 377.0185629913109, "04/29/2015", "Robert", "Australia", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (261, 640.1020746010186, "02/25/2013", "Anne", "United States", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (262, 718.7191007858297, "10/26/2013", "Mary", "Canada", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (263, 623.8824388910177, "09/09/2014", "Anne", "United States", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (264, 604.4559182457928, "04/02/2013", "John", "Canada", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (265, 693.2411862787529, "07/12/2012", "Michael", "Belgium", "Adobe", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (266, 469.0517339164405, "08/28/2014", "John", "Canada", "Adobe", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (267, 577.0716580311473, "05/24/2012", "Georgia", "United States", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (268, 127.1872617991584, "01/01/2013", "Robert", "Netherlands", "Google", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (269, 927.1125902078858, "12/04/2015", "Michael", "United States", "Apple", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (270, 645.3865254572625, "08/23/2014", "Mary", "Netherlands", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (271, 211.50410778374018, "06/10/2015", "Anne", "United States", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (272, 374.81833563902813, "01/17/2013", "Robert", "Canada", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (273, 592.3724887929997, "11/22/2014", "Anne", "United Kingdom", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (274, 52.75737224473531, "02/14/2012", "John", "Australia", "Apple", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (275, 363.5172342450611, "08/29/2012", "Georgia", "United States", "Google", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (276, 304.2326857837635, "09/09/2014", "Robert", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (277, 270.09121477263056, "07/01/2015", "Michael", "Belgium", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (278, 31.562167253527672, "06/12/2013", "Robert", "Canada", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (279, 402.88751436939475, "06/20/2015", "Anne", "United Kingdom", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (280, 680.1146037610629, "03/09/2014", "Mary", "Canada", "Dell", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (281, 299.62776206349827, "05/31/2012", "Anne", "Belgium", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (282, 414.31162448711467, "09/30/2012", "John", "Australia", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (283, 940.5971884575237, "06/17/2015", "Georgia", "United Kingdom", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (284, 273.87639441228515, "03/16/2016", "Mary", "Australia", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (285, 218.3962711422446, "09/24/2012", "Georgia", "Belgium", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (286, 548.7481005253705, "10/03/2013", "Mary", "Netherlands", "Apple", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (287, 837.5708045968643, "08/14/2015", "Michael", "Belgium", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (288, 896.6009444432302, "06/21/2013", "Mary", "Netherlands", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (289, 52.45626045884511, "12/11/2013", "Michael", "Belgium", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (290, 678.6307331342005, "08/08/2014", "Mary", "Netherlands", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (291, 563.5231809335604, "03/09/2016", "Michael", "United States", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (292, 327.5009820975473, "10/13/2015", "John", "Australia", "Microsoft", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (293, 262.88374479554, "01/25/2016", "Georgia", "Belgium", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (294, 756.9397542899642, "05/29/2012", "Robert", "Canada", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (295, 290.6632276313229, "05/23/2012", "Georgia", "Belgium", "Adobe", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (296, 708.73502880835, "04/06/2016", "John", "Australia", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (297, 547.8863386429024, "05/05/2013", "Anne", "United Kingdom", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (298, 312.52529869027103, "07/20/2015", "Robert", "Canada", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (299, 167.93895423929806, "01/10/2015", "Michael", "Belgium", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (300, 432.1167007826493, "01/11/2013", "Robert", "Canada", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (301, 548.4463278557804, "09/30/2015", "Michael", "Belgium", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (302, 913.6941327280107, "11/16/2012", "Robert", "Australia", "Microsoft", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (303, 505.3564531321176, "07/07/2012", "Michael", "Belgium", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (304, 176.38520640206823, "03/10/2014", "Mary", "Netherlands", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (305, 903.3370359726199, "12/09/2015", "Michael", "United States", "Apple", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (306, 586.5488561305027, "05/05/2014", "Robert", "Netherlands", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (307, 433.33397995333013, "07/20/2013", "Anne", "United States", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (308, 462.8566337691732, "07/31/2012", "Mary", "Canada", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (309, 301.93025476313187, "02/25/2014", "Michael", "United Kingdom", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (310, 117.47942829441726, "03/13/2013", "Mary", "Netherlands", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (311, 70.97170586318458, "03/03/2015", "Anne", "Belgium", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (312, 265.02171915100257, "05/31/2013", "Robert", "Australia", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (313, 988.5877259780974, "05/26/2013", "Michael", "United Kingdom", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (314, 37.37957360696187, "12/21/2015", "Mary", "Canada", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (315, 630.7236019151584, "02/16/2015", "Anne", "United States", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (316, 302.0388910815727, "02/27/2016", "John", "Canada", "Adobe", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (317, 465.0507260626827, "03/01/2014", "Michael", "Belgium", "Google", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (318, 645.7718820746431, "02/03/2013", "John", "Netherlands", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (319, 888.0256526237372, "09/16/2015", "Georgia", "Belgium", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (320, 20.99124489680537, "10/28/2014", "Mary", "Australia", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (321, 796.3335063964173, "04/29/2014", "Anne", "United Kingdom", "Adobe", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (322, 485.1499833252307, "06/03/2013", "Robert", "Australia", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (323, 793.4621535114346, "03/12/2016", "Anne", "Belgium", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (324, 572.0543007341203, "03/17/2012", "Robert", "Canada", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (325, 728.7754591756307, "03/08/2012", "Georgia", "United Kingdom", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (326, 589.7320231935427, "04/14/2014", "John", "Canada", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (327, 217.58380653557253, "01/14/2015", "Anne", "United States", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (328, 916.2835450668832, "06/03/2015", "Robert", "Australia", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (329, 505.3902999744669, "01/24/2012", "Georgia", "United Kingdom", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (330, 102.74325860842882, "01/29/2014", "Mary", "Canada", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (331, 257.25527110043953, "12/27/2015", "Michael", "United Kingdom", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (332, 467.35849508525706, "06/04/2013", "John", "Australia", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (333, 714.7078338815733, "02/11/2016", "Georgia", "United States", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (334, 668.9494979397291, "10/28/2015", "Robert", "Netherlands", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (335, 273.82584575424164, "10/27/2012", "Georgia", "United Kingdom", "Adobe", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (336, 185.6066627868448, "11/21/2015", "Robert", "Australia", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (337, 328.2088645442621, "10/28/2015", "Georgia", "Belgium", "Microsoft", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (338, 837.9575950122081, "03/28/2016", "Mary", "Australia", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (339, 265.05883755911555, "09/24/2015", "Georgia", "United States", "Microsoft", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (340, 169.56465419347734, "01/23/2016", "Robert", "Australia", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (341, 226.02588626899401, "02/21/2012", "Anne", "United States", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (342, 258.0137667740484, "04/15/2013", "Mary", "Australia", "Apple", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (343, 464.56829901704157, "10/09/2015", "Anne", "United States", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (344, 115.89021493958873, "10/02/2012", "Robert", "Netherlands", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (345, 985.8868270631592, "01/06/2015", "Anne", "United States", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (346, 964.5802767576682, "08/17/2015", "John", "Australia", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (347, 68.90956171988505, "08/24/2015", "Michael", "Belgium", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (348, 406.4187302977199, "06/10/2012", "Mary", "Canada", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (349, 29.187626376714014, "10/29/2015", "Michael", "Belgium", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (350, 92.64373961514283, "12/04/2013", "Robert", "Canada", "Apple", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (351, 365.87314490062596, "06/23/2013", "Anne", "United Kingdom", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (352, 816.9687305003456, "02/26/2016", "John", "Australia", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (353, 67.96437286016454, "01/09/2016", "Anne", "United Kingdom", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (354, 823.8913486282689, "04/16/2015", "Mary", "Netherlands", "Adobe", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (355, 560.1289798354273, "06/04/2014", "Georgia", "United States", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (356, 543.1794770084849, "02/19/2014", "Mary", "Canada", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (357, 31.827095472316657, "04/14/2012", "Michael", "Belgium", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (358, 173.21092780148584, "08/22/2014", "John", "Canada", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (359, 771.1953251481235, "01/03/2016", "Michael", "United Kingdom", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (360, 863.9141316054496, "02/21/2012", "Mary", "Netherlands", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (361, 975.8009653878795, "07/14/2015", "Georgia", "Belgium", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (362, 717.508291356061, "11/08/2013", "John", "Canada", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (363, 677.7971892018326, "07/09/2012", "Michael", "United States", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (364, 907.2890185874135, "03/18/2015", "John", "Canada", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (365, 631.8957807237507, "02/12/2012", "Georgia", "United States", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (366, 382.49834226065417, "04/27/2015", "Robert", "Netherlands", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (367, 536.3820333679776, "09/24/2012", "Michael", "United States", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (368, 104.93894835565077, "05/11/2015", "Robert", "Australia", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (369, 211.9264426192259, "11/30/2014", "Anne", "United States", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (370, 162.0152058879364, "02/04/2013", "John", "Netherlands", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (371, 925.0325917968253, "10/25/2015", "Anne", "United Kingdom", "Microsoft", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (372, 319.35435559307655, "03/29/2013", "John", "Canada", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (373, 80.56282907484736, "08/08/2014", "Anne", "United Kingdom", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (374, 521.9804027973278, "03/29/2014", "Robert", "Australia", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (375, 659.6703231985251, "07/12/2015", "Georgia", "United Kingdom", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (376, 445.91820934523287, "09/18/2015", "John", "Netherlands", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (377, 88.38339193029444, "01/14/2012", "Michael", "Belgium", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (378, 490.5817820795685, "04/07/2012", "Robert", "Netherlands", "Dell", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (379, 619.9304224848497, "01/26/2015", "Anne", "Belgium", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (380, 11.959444872320478, "03/15/2016", "John", "Netherlands", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (381, 727.8869055162108, "01/03/2015", "Michael", "United States", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (382, 251.98234312549695, "09/28/2014", "Robert", "Canada", "Apple", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (383, 463.26818470187413, "08/27/2014", "Georgia", "United States", "Google", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (384, 481.5062367355537, "01/04/2013", "Mary", "Netherlands", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (385, 912.2612849405024, "01/03/2014", "Anne", "United States", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (386, 644.5947544803815, "04/26/2012", "John", "Australia", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (387, 821.5683752111071, "10/05/2015", "Georgia", "Belgium", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (388, 631.2745318490719, "12/20/2013", "John", "Canada", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (389, 662.223093607332, "02/22/2016", "Anne", "United Kingdom", "Microsoft", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (390, 141.97630181726228, "02/24/2013", "Mary", "Australia", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (391, 992.9061530748114, "12/02/2014", "Michael", "Belgium", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (392, 227.87933516343995, "02/05/2016", "John", "Australia", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (393, 53.11816077735043, "10/02/2013", "Michael", "United States", "Microsoft", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (394, 126.61029051053096, "11/03/2013", "Robert", "Netherlands", "Microsoft", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (395, 732.6430624072401, "08/26/2014", "Georgia", "United Kingdom", "Microsoft", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (396, 504.4591660078047, "11/13/2013", "Robert", "Netherlands", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (397, 908.8197971830857, "10/26/2015", "Georgia", "United Kingdom", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (398, 938.8396541188887, "12/11/2012", "Robert", "Canada", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (399, 126.86104707201606, "04/02/2014", "Michael", "United Kingdom", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (400, 439.9329879562034, "03/15/2015", "Robert", "Australia", "Microsoft", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (401, 607.3746010196469, "08/09/2014", "Georgia", "United Kingdom", "Microsoft", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (402, 8.910483809237645, "12/17/2012", "Robert", "Australia", "Apple", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (403, 740.4667020355032, "01/06/2015", "Georgia", "Belgium", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (404, 596.3077266664677, "07/16/2013", "Mary", "Canada", "Microsoft", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (405, 345.6136643457003, "05/07/2014", "Georgia", "United States", "Google", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (406, 443.8866089329719, "02/04/2014", "Mary", "Australia", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (407, 89.40917931373693, "04/24/2015", "Michael", "United States", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (408, 90.85833512038167, "01/17/2013", "Robert", "Australia", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (409, 358.11783912944315, "09/05/2013", "Anne", "Belgium", "Dell", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (410, 477.1218942519174, "08/07/2015", "Robert", "Canada", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (411, 149.2779544048276, "02/11/2013", "Michael", "Belgium", "Google", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (412, 746.7775786493781, "12/22/2014", "John", "Canada", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (413, 107.64334373489659, "12/11/2014", "Anne", "United States", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (414, 239.3149237386939, "03/09/2013", "Mary", "Canada", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (415, 39.90330142566811, "04/14/2015", "Michael", "United Kingdom", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (416, 48.57712365635469, "12/21/2012", "Mary", "Australia", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (417, 86.53134473224122, "01/23/2015", "Michael", "Belgium", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (418, 713.9713897831293, "06/21/2012", "John", "Netherlands", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (419, 152.98775323707036, "07/24/2014", "Anne", "United Kingdom", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (420, 545.6185940665931, "12/30/2013", "Robert", "Australia", "Apple", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (421, 251.12239341424004, "12/21/2013", "Georgia", "Belgium", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (422, 44.345709231696446, "05/12/2015", "Robert", "Netherlands", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (423, 912.9483125955687, "02/20/2016", "Georgia", "Belgium", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (424, 585.7634363388297, "02/18/2016", "Robert", "Canada", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (425, 523.4476935144054, "06/01/2012", "Georgia", "Belgium", "Apple", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (426, 862.7554362012698, "07/26/2014", "Mary", "Australia", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (427, 542.7584879655111, "07/17/2013", "Michael", "Belgium", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (428, 165.5596877115514, "03/31/2016", "Robert", "Netherlands", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (429, 188.45415793349719, "05/16/2013", "Michael", "United States", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (430, 48.85580244322296, "05/25/2015", "Robert", "Canada", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (431, 47.12844271675076, "07/30/2014", "Georgia", "United Kingdom", "Apple", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (432, 789.5566140575509, "02/13/2013", "Robert", "Netherlands", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (433, 39.75925781268741, "02/05/2012", "Anne", "United Kingdom", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (434, 652.161088218724, "03/05/2013", "John", "Netherlands", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (435, 412.39894042879786, "04/06/2013", "Michael", "Belgium", "Microsoft", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (436, 385.43319592911627, "12/03/2013", "John", "Netherlands", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (437, 263.16155760558865, "07/07/2013", "Michael", "United Kingdom", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (438, 84.59143143962532, "06/16/2015", "John", "Australia", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (439, 818.7307171711494, "03/11/2015", "Anne", "United Kingdom", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (440, 581.8320689718087, "01/18/2012", "John", "Netherlands", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (441, 223.57609386228938, "09/25/2012", "Anne", "Belgium", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (442, 632.2922874829181, "05/16/2013", "John", "Netherlands", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (443, 638.7846577408312, "02/07/2013", "Anne", "United Kingdom", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (444, 589.8723538087708, "11/22/2013", "Robert", "Netherlands", "Microsoft", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (445, 98.10654348821501, "06/02/2015", "Michael", "United Kingdom", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (446, 246.04307053365991, "05/25/2012", "Mary", "Australia", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (447, 981.0197697694389, "07/28/2012", "Michael", "United States", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (448, 568.6666431750324, "02/08/2016", "John", "Australia", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (449, 115.12473919104849, "06/12/2014", "Michael", "Belgium", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (450, 958.0380723422567, "05/06/2014", "Robert", "Netherlands", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (451, 235.0641957515539, "01/13/2012", "Georgia", "Belgium", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (452, 4.391467661767011, "11/16/2015", "John", "Canada", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (453, 33.72755055751597, "09/30/2013", "Michael", "United States", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (454, 764.6711898619919, "06/19/2015", "John", "Australia", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (455, 40.30182993534004, "06/27/2013", "Georgia", "United States", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (456, 371.51066390525136, "05/10/2013", "Robert", "Australia", "Google", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (457, 610.5513758256676, "07/28/2015", "Georgia", "Belgium", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (458, 770.582692387766, "06/12/2013", "Robert", "Australia", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (459, 423.0180824756574, "02/02/2014", "Michael", "Belgium", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (460, 353.0467002532559, "12/05/2014", "Robert", "Netherlands", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (461, 154.61390238757465, "10/27/2012", "Anne", "Belgium", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (462, 152.30756636907705, "04/05/2015", "Mary", "Netherlands", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (463, 309.3962079535938, "11/05/2013", "Georgia", "Belgium", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (464, 235.19168553387348, "10/10/2015", "Robert", "Canada", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (465, 492.9018343122952, "07/21/2012", "Georgia", "United Kingdom", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (466, 989.1401206558469, "11/28/2013", "Mary", "Netherlands", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (467, 938.0301916773627, "01/03/2015", "Georgia", "United States", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (468, 874.7160961337212, "04/06/2015", "John", "Canada", "Dell", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (469, 752.3821979410045, "12/08/2014", "Michael", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (470, 714.2381325560724, "08/28/2012", "Mary", "Netherlands", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (471, 158.9805683414539, "11/21/2012", "Georgia", "United Kingdom", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (472, 992.4862011432897, "09/09/2013", "Robert", "Netherlands", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (473, 306.5311780460677, "12/15/2015", "Georgia", "United Kingdom", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (474, 606.313696968967, "07/03/2012", "Mary", "Australia", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (475, 914.9993773467423, "07/12/2013", "Anne", "United States", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (476, 755.6490287550267, "01/25/2012", "John", "Netherlands", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (477, 689.825717257914, "09/01/2012", "Georgia", "Belgium", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (478, 971.5770016609843, "09/24/2013", "John", "Australia", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (479, 283.99999620342464, "04/13/2013", "Michael", "Belgium", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (480, 28.86296176471015, "08/14/2012", "Robert", "Canada", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (481, 503.7903946283026, "09/09/2012", "Anne", "United Kingdom", "Google", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (482, 815.8292285147787, "04/10/2014", "Mary", "Australia", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (483, 216.5905330720338, "03/29/2016", "Georgia", "United Kingdom", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (484, 169.91665133534173, "04/07/2015", "Mary", "Canada", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (485, 793.2746542426482, "07/06/2015", "Michael", "Belgium", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (486, 829.7591665893483, "08/14/2012", "Mary", "Australia", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (487, 798.6949293712778, "08/19/2012", "Georgia", "United Kingdom", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (488, 842.0262400625104, "03/24/2012", "Robert", "Australia", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (489, 1000.0322643520557, "04/23/2014", "Georgia", "United Kingdom", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (490, 952.542201562274, "12/05/2012", "Robert", "Netherlands", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (491, 556.3910261105892, "01/07/2014", "Georgia", "United Kingdom", "Dell", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (492, 161.7945763698828, "07/10/2015", "Mary", "Netherlands", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (493, 425.74820839880476, "09/22/2012", "Michael", "Belgium", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (494, 789.2522403813674, "07/05/2014", "Robert", "Canada", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (495, 900.9106356272723, "04/03/2013", "Anne", "United Kingdom", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (496, 482.80694248112223, "01/18/2015", "Mary", "Netherlands", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (497, 910.6529538061537, "07/10/2012", "Michael", "United States", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (498, 24.45687827887688, "01/18/2013", "Mary", "Australia", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (499, 893.7377954176874, "04/07/2016", "Michael", "United Kingdom", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (500, 842.8295646415728, "05/15/2012", "Mary", "Canada", "Dell", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (501, 585.7183329755727, "12/19/2013", "Anne", "Belgium", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (502, 6.830163642003061, "02/08/2014", "John", "Netherlands", "Microsoft", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (503, 814.2153404818312, "06/12/2013", "Anne", "United Kingdom", "Google", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (504, 817.3675870664646, "04/10/2012", "Robert", "Netherlands", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (505, 207.6679683435677, "01/05/2012", "Georgia", "Belgium", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (506, 582.5718625047215, "07/24/2014", "Mary", "Australia", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (507, 76.8588777216096, "12/31/2012", "Anne", "United States", "Adobe", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (508, 457.577436452861, "01/28/2015", "Robert", "Canada", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (509, 499.5011314694747, "08/20/2012", "Michael", "Belgium", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (510, 452.74018960043514, "07/03/2014", "Mary", "Netherlands", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (511, 478.6091263298983, "09/21/2013", "Anne", "United Kingdom", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (512, 741.5016994488682, "11/11/2014", "Robert", "Australia", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (513, 148.81470989538548, "06/21/2014", "Georgia", "United States", "Microsoft", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (514, 172.95294667733597, "08/07/2012", "Mary", "Netherlands", "Dell", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (515, 356.24954699474455, "09/04/2014", "Michael", "Belgium", "Microsoft", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (516, 828.8665458065619, "07/26/2012", "Robert", "Australia", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (517, 7.4107045053951595, "09/01/2013", "Anne", "United States", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (518, 785.4329940160188, "06/08/2012", "John", "Canada", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (519, 701.9590920132374, "11/07/2012", "Anne", "United States", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (520, 552.4802260022271, "05/09/2012", "John", "Netherlands", "Apple", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (521, 192.34914867008158, "07/11/2015", "Anne", "United Kingdom", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (522, 809.0395206917769, "05/27/2013", "John", "Canada", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (523, 19.07644476028658, "01/10/2014", "Michael", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (524, 960.3833826210034, "10/28/2015", "John", "Australia", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (525, 819.8684864868596, "01/21/2012", "Georgia", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (526, 133.02105732032288, "03/31/2012", "Mary", "Australia", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (527, 521.0163916380756, "12/22/2015", "Michael", "United States", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (528, 272.26005115698734, "08/01/2013", "Mary", "Australia", "Microsoft", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (529, 524.1937087059811, "01/08/2015", "Anne", "United States", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (530, 332.4466720766256, "05/10/2013", "John", "Canada", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (531, 22.051238046758236, "03/06/2016", "Georgia", "United States", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (532, 242.7951147766031, "05/05/2015", "Robert", "Netherlands", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (533, 943.8704804065991, "09/25/2015", "Georgia", "Belgium", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (534, 267.49121241320086, "08/08/2012", "Robert", "Australia", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (535, 264.39926957195183, "12/11/2014", "Michael", "Belgium", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (536, 89.88563942777105, "02/11/2012", "John", "Australia", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (537, 577.7995154585772, "03/31/2014", "Anne", "United States", "Adobe", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (538, 697.2081785963007, "12/06/2014", "Robert", "Netherlands", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (539, 583.2243120528063, "05/07/2015", "Michael", "United Kingdom", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (540, 27.36594063620312, "09/02/2012", "John", "Canada", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (541, 68.4322609515936, "08/25/2014", "Georgia", "United Kingdom", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (542, 976.948187861517, "04/11/2014", "Robert", "Canada", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (543, 930.4282720127406, "07/02/2014", "Anne", "United States", "Apple", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (544, 530.6878438032069, "01/04/2012", "John", "Canada", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (545, 575.2348524614345, "05/04/2015", "Georgia", "Belgium", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (546, 767.3931845085739, "03/16/2014", "Mary", "Canada", "Microsoft", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (547, 49.76185333016081, "04/02/2016", "Anne", "Belgium", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (548, 334.04812959754713, "05/11/2015", "John", "Australia", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (549, 587.9943479566974, "12/23/2013", "Anne", "United Kingdom", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (550, 60.517959168096546, "01/04/2013", "Mary", "Netherlands", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (551, 870.4558030054949, "04/05/2016", "Georgia", "United States", "Microsoft", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (552, 311.6945286540426, "08/09/2014", "Mary", "Australia", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (553, 983.8500456061755, "01/19/2012", "Michael", "Belgium", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (554, 162.09481794937275, "01/01/2013", "Mary", "Netherlands", "Adobe", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (555, 163.26180881249675, "06/27/2014", "Georgia", "United States", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (556, 619.5504121729093, "12/11/2015", "Robert", "Canada", "Microsoft", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (557, 731.8531326476158, "04/01/2012", "Michael", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (558, 212.05168787352224, "06/16/2014", "John", "Canada", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (559, 540.1784219437142, "05/25/2014", "Georgia", "Belgium", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (560, 476.0327966657393, "11/17/2014", "Mary", "Canada", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (561, 774.521837086953, "09/10/2015", "Anne", "United Kingdom", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (562, 682.9939522047323, "12/19/2013", "Robert", "Australia", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (563, 741.7371880406411, "06/09/2013", "Georgia", "Belgium", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (564, 894.7924579357526, "09/29/2012", "Robert", "Australia", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (565, 434.6997522930377, "03/11/2015", "Michael", "United Kingdom", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (566, 410.7245878195661, "08/01/2013", "Mary", "Canada", "Dell", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (567, 613.9248106527903, "04/04/2014", "Georgia", "United Kingdom", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (568, 184.38486609421278, "05/19/2013", "Robert", "Australia", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (569, 41.925543900237614, "09/03/2014", "Anne", "United Kingdom", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (570, 130.70275397834374, "07/29/2015", "John", "Netherlands", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (571, 474.50283922168757, "01/25/2012", "Anne", "Belgium", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (572, 581.4521948295784, "06/30/2015", "John", "Netherlands", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (573, 151.69269553904329, "01/02/2015", "Michael", "United Kingdom", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (574, 27.286663412501852, "01/25/2014", "Robert", "Netherlands", "Apple", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (575, 657.8528211669831, "11/05/2013", "Michael", "United Kingdom", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (576, 778.6573571190895, "08/10/2012", "Mary", "Australia", "Adobe", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (577, 821.8012909321525, "11/22/2012", "Anne", "Belgium", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (578, 634.5729001293624, "07/01/2014", "Robert", "Canada", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (579, 976.4992419478399, "04/08/2014", "Georgia", "United Kingdom", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (580, 637.5778081934852, "02/01/2013", "Mary", "Netherlands", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (581, 575.0995863090806, "09/06/2013", "Michael", "Belgium", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (582, 223.15059292446182, "08/28/2012", "John", "Canada", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (583, 600.7724769048356, "08/09/2013", "Georgia", "Belgium", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (584, 759.6716673029208, "08/01/2014", "Robert", "Netherlands", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (585, 841.3906998156509, "11/03/2012", "Michael", "United Kingdom", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (586, 287.62857149281075, "01/17/2012", "John", "Canada", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (587, 19.894469251361954, "01/28/2013", "Georgia", "Belgium", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (588, 382.8812435745653, "02/07/2013", "John", "Netherlands", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (589, 623.0304539279678, "02/03/2013", "Georgia", "Belgium", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (590, 843.4548580867555, "06/01/2015", "Mary", "Canada", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (591, 382.89595820046907, "01/07/2012", "Michael", "Belgium", "Microsoft", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (592, 925.5160502295436, "09/14/2015", "Mary", "Canada", "Dell", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (593, 566.1503880067521, "10/01/2014", "Georgia", "United Kingdom", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (594, 461.51999721433145, "02/19/2016", "Mary", "Australia", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (595, 711.105770070833, "04/06/2016", "Anne", "United Kingdom", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (596, 485.0835675813462, "02/17/2014", "Mary", "Netherlands", "Apple", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (597, 454.882488955667, "12/26/2012", "Anne", "United Kingdom", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (598, 135.52052237026257, "08/17/2014", "John", "Australia", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (599, 363.98249875825707, "04/30/2015", "Michael", "United Kingdom", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (600, 703.587693661256, "02/24/2012", "Mary", "Netherlands", "Google", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (601, 319.36365997139194, "10/12/2012", "Anne", "United Kingdom", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (602, 33.57574695695009, "07/31/2015", "Robert", "Australia", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (603, 961.2738510046611, "01/18/2013", "Anne", "United States", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (604, 294.9286991102854, "05/23/2015", "Robert", "Australia", "Dell", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (605, 873.6021905487576, "10/20/2013", "Anne", "United Kingdom", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (606, 19.46068324833294, "12/14/2013", "Robert", "Canada", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (607, 358.5619238197585, "10/15/2014", "Michael", "United States", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (608, 31.27876488940917, "01/13/2014", "Mary", "Netherlands", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (609, 82.36068278737851, "03/11/2014", "Anne", "United Kingdom", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (610, 373.62713544594584, "08/21/2013", "Mary", "Canada", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (611, 561.0453941435701, "11/15/2013", "Michael", "United Kingdom", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (612, 166.2557404409629, "07/23/2013", "Mary", "Netherlands", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (613, 755.1298578811726, "12/08/2015", "Anne", "United States", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (614, 830.1095839959348, "02/18/2015", "Mary", "Netherlands", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (615, 126.99337664041244, "03/06/2014", "Georgia", "United Kingdom", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (616, 62.569146812714415, "10/15/2014", "Mary", "Canada", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (617, 368.2630343791556, "11/05/2013", "Anne", "United Kingdom", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (618, 847.952335248806, "03/08/2015", "John", "Australia", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (619, 168.24278320840048, "09/03/2013", "Georgia", "Belgium", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (620, 543.615739569686, "03/23/2014", "Robert", "Netherlands", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (621, 807.4519498294693, "02/17/2016", "Anne", "United Kingdom", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (622, 747.8440996114003, "01/15/2014", "Mary", "Netherlands", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (623, 529.5040133036805, "02/15/2015", "Michael", "Belgium", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (624, 659.5155814061345, "05/18/2013", "Robert", "Netherlands", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (625, 872.8487240100044, "01/08/2015", "Anne", "United Kingdom", "Google", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (626, 81.78043450028783, "02/14/2012", "Robert", "Australia", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (627, 4.1291972325813155, "02/09/2016", "Georgia", "United Kingdom", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (628, 345.5113510840021, "04/11/2015", "Robert", "Netherlands", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (629, 686.1665433647249, "03/21/2013", "Michael", "United States", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (630, 74.22349119307536, "10/04/2014", "Robert", "Netherlands", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (631, 713.8554512484795, "01/02/2013", "Georgia", "United States", "Microsoft", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (632, 48.77376948105183, "01/12/2012", "Mary", "Netherlands", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (633, 819.4050088920154, "01/22/2015", "Anne", "Belgium", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (634, 192.04519819292065, "08/31/2015", "John", "Australia", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (635, 777.1527949605769, "08/03/2013", "Michael", "United States", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (636, 654.2538381475761, "06/20/2012", "Robert", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (637, 464.4505154160415, "02/19/2016", "Michael", "United Kingdom", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (638, 21.79787356365692, "07/28/2012", "Mary", "Canada", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (639, 519.2489757054167, "08/26/2012", "Anne", "United States", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (640, 240.28012188496893, "03/15/2012", "John", "Netherlands", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (641, 28.42859451211599, "08/12/2013", "Georgia", "United States", "Microsoft", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (642, 41.01450742597634, "01/13/2012", "Robert", "Canada", "Microsoft", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (643, 295.4052870968354, "01/03/2016", "Georgia", "United Kingdom", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (644, 741.9365152348939, "09/06/2015", "Robert", "Australia", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (645, 442.8972690648351, "05/30/2014", "Anne", "United States", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (646, 492.7742742894238, "10/05/2015", "John", "Canada", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (647, 480.0105836243008, "07/21/2013", "Anne", "United States", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (648, 125.67283900296233, "07/11/2015", "Mary", "Canada", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (649, 376.2891452488103, "01/09/2016", "Michael", "United States", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (650, 645.6002961404762, "04/15/2014", "Robert", "Australia", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (651, 632.0435950905222, "01/18/2012", "Anne", "United States", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (652, 528.5705872914474, "07/22/2014", "Mary", "Canada", "Adobe", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (653, 373.66165855624723, "03/15/2013", "Georgia", "United States", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (654, 48.52529336974898, "02/12/2016", "Robert", "Netherlands", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (655, 704.1494928625804, "09/20/2013", "Michael", "Belgium", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (656, 98.97607312278922, "01/29/2014", "John", "Australia", "Apple", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (657, 838.0223363618763, "07/18/2012", "Michael", "United Kingdom", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (658, 698.0604468314938, "07/27/2013", "Mary", "Netherlands", "Dell", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (659, 437.4542399294349, "03/01/2014", "Michael", "United Kingdom", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (660, 335.9654376837352, "01/12/2014", "Mary", "Canada", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (661, 24.3480457666031, "04/19/2013", "Anne", "United Kingdom", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (662, 882.7974139287976, "12/19/2012", "John", "Canada", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (663, 624.5744999447575, "12/18/2012", "Michael", "United Kingdom", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (664, 687.1014265528233, "10/11/2013", "Robert", "Canada", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (665, 427.1546089751729, "09/06/2015", "Michael", "Belgium", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (666, 531.9222241666855, "01/27/2012", "John", "Canada", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (667, 23.587538669502916, "08/05/2014", "Michael", "Belgium", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (668, 961.0864239966019, "07/21/2012", "John", "Canada", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (669, 282.6973883085765, "08/21/2012", "Michael", "Belgium", "Apple", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (670, 991.5207105287961, "05/12/2015", "Robert", "Australia", "Dell", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (671, 51.282125499619745, "07/10/2012", "Georgia", "United States", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (672, 302.4100456961262, "10/28/2014", "Mary", "Australia", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (673, 459.8865087501512, "02/10/2016", "Anne", "Belgium", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (674, 1.6134600890219666, "09/23/2012", "John", "Australia", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (675, 878.4527694103624, "03/25/2014", "Anne", "Belgium", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (676, 107.52390723183936, "07/30/2014", "Robert", "Australia", "Microsoft", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (677, 648.6318514882557, "03/25/2016", "Georgia", "Belgium", "Adobe", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (678, 299.8849647989933, "12/22/2015", "Robert", "Netherlands", "Google", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (679, 735.2111691542237, "10/24/2012", "Anne", "United Kingdom", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (680, 386.3347227345927, "05/19/2013", "John", "Australia", "Dell", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (681, 993.1427212351552, "10/09/2013", "Anne", "Belgium", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (682, 588.1822970491997, "05/02/2012", "John", "Netherlands", "Google", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (683, 854.9314424718589, "08/25/2015", "Anne", "United Kingdom", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (684, 330.5381739161707, "08/23/2014", "Mary", "Australia", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (685, 322.4494860756894, "09/25/2014", "Anne", "United States", "Adobe", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (686, 334.9623859406049, "10/30/2014", "John", "Canada", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (687, 314.3235359999067, "01/20/2015", "Anne", "United States", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (688, 276.9545232943232, "04/22/2013", "Robert", "Australia", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (689, 403.37603244030737, "08/25/2015", "Michael", "United Kingdom", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (690, 518.378738749024, "01/31/2012", "Robert", "Netherlands", "Apple", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (691, 808.498569736669, "01/02/2013", "Anne", "Belgium", "Dell", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (692, 140.33259995750302, "11/27/2014", "John", "Netherlands", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (693, 509.4371710352458, "02/08/2012", "Georgia", "United States", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (694, 6.90787011583771, "03/09/2013", "John", "Australia", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (695, 134.5014139839601, "06/12/2015", "Michael", "United States", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (696, 995.3101985668263, "06/22/2013", "Robert", "Canada", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (697, 587.260989390909, "04/22/2013", "Michael", "United Kingdom", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (698, 401.5942954875721, "02/13/2013", "John", "Canada", "Dell", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (699, 965.8717608123452, "05/23/2013", "Georgia", "Belgium", "Apple", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (700, 358.11938532165897, "08/27/2015", "Robert", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (701, 563.6839793116043, "03/17/2012", "Georgia", "United States", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (702, 752.8319612653914, "12/11/2014", "Mary", "Netherlands", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (703, 316.8186704268193, "11/05/2012", "Michael", "United Kingdom", "Apple", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (704, 289.2875902759987, "06/01/2015", "Robert", "Netherlands", "Adobe", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (705, 84.01559051881746, "01/22/2013", "Georgia", "Belgium", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (706, 14.406888266977335, "01/05/2013", "Robert", "Australia", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (707, 118.83976983059064, "01/09/2012", "Georgia", "United Kingdom", "Google", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (708, 525.2857727642711, "10/10/2013", "Robert", "Netherlands", "Apple", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (709, 826.7441993774728, "07/28/2013", "Anne", "United States", "Google", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (710, 715.6805155666292, "06/13/2014", "Mary", "Netherlands", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (711, 275.6583252162991, "01/18/2013", "Anne", "Belgium", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (712, 526.1681340972492, "11/07/2015", "Robert", "Netherlands", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (713, 786.6679705885758, "11/22/2013", "Anne", "United Kingdom", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (714, 534.5664842151356, "04/25/2013", "Mary", "Netherlands", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (715, 447.19620954887694, "10/17/2014", "Michael", "United States", "Google", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (716, 616.3479430560227, "01/13/2016", "Mary", "Netherlands", "Dell", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (717, 836.263843087277, "03/19/2016", "Georgia", "Belgium", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (718, 848.7404659762631, "02/11/2016", "Robert", "Australia", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (719, 903.0143286661981, "11/08/2012", "Georgia", "United States", "Adobe", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (720, 628.1433088496041, "10/22/2015", "Robert", "Australia", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (721, 666.860565782509, "02/09/2014", "Georgia", "Belgium", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (722, 74.48077435739641, "06/30/2012", "Mary", "Netherlands", "Adobe", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (723, 617.4251911478987, "10/15/2013", "Georgia", "Belgium", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (724, 676.6933495844395, "01/25/2016", "Robert", "Australia", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (725, 354.63683258058256, "09/10/2014", "Michael", "Belgium", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (726, 566.3855635495613, "06/21/2015", "John", "Netherlands", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (727, 128.12254700416793, "06/08/2012", "Michael", "Belgium", "Microsoft", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (728, 870.6352866964594, "03/19/2012", "Robert", "Australia", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (729, 8.651126833175148, "10/04/2014", "Anne", "United Kingdom", "Microsoft", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (730, 435.4454905043018, "07/19/2014", "Mary", "Australia", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (731, 554.8726664190273, "01/07/2013", "Anne", "United States", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (732, 68.34454919304955, "04/05/2016", "John", "Australia", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (733, 263.74921089876256, "02/19/2014", "Georgia", "United Kingdom", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (734, 504.6044192990379, "11/09/2015", "Robert", "Canada", "Apple", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (735, 373.7489747752204, "01/14/2014", "Georgia", "United States", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (736, 311.3202653618338, "05/01/2015", "Robert", "Netherlands", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (737, 453.63746321485377, "07/06/2015", "Georgia", "Belgium", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (738, 792.8404211661733, "04/07/2015", "John", "Canada", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (739, 394.9755312987361, "01/22/2015", "Georgia", "United Kingdom", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (740, 255.93743340107034, "10/26/2014", "John", "Netherlands", "Adobe", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (741, 705.9535234079311, "09/13/2015", "Georgia", "Belgium", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (742, 920.6731296226181, "10/28/2014", "Mary", "Canada", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (743, 392.418408513613, "05/04/2013", "Michael", "Belgium", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (744, 375.1681732890432, "03/02/2013", "Robert", "Canada", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (745, 179.79931949511163, "05/22/2014", "Georgia", "United Kingdom", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (746, 638.4495305655337, "02/18/2013", "Mary", "Canada", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (747, 229.74267736923716, "06/11/2014", "Michael", "Belgium", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (748, 111.32055434318688, "07/10/2014", "Robert", "Canada", "Google", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (749, 521.0530057976987, "07/19/2012", "Georgia", "Belgium", "Adobe", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (750, 368.82648741942813, "09/08/2015", "John", "Canada", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (751, 987.3338502211376, "10/15/2012", "Anne", "United States", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (752, 784.2433596965101, "03/26/2016", "Robert", "Australia", "Google", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (753, 996.959380843223, "09/30/2013", "Anne", "United Kingdom", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (754, 281.725559361892, "12/29/2014", "John", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (755, 121.83634345019422, "01/05/2012", "Anne", "United States", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (756, 583.7535838887985, "11/06/2013", "Mary", "Netherlands", "Dell", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (757, 53.19667835431196, "05/07/2013", "Michael", "Belgium", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (758, 413.78951825801767, "01/14/2013", "Mary", "Canada", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (759, 175.46613899514895, "10/18/2015", "Georgia", "Belgium", "Apple", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (760, 143.58936057494685, "01/27/2015", "John", "Australia", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (761, 8.800024033816522, "11/09/2014", "Georgia", "United Kingdom", "Adobe", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (762, 999.871410134972, "11/07/2013", "Robert", "Australia", "Google", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (763, 26.036269067449936, "01/06/2014", "Michael", "United States", "Microsoft", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (764, 198.5278074726996, "06/22/2014", "Mary", "Netherlands", "Microsoft", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (765, 343.42652069583033, "04/07/2014", "Anne", "United States", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (766, 453.9732772801636, "06/12/2014", "John", "Canada", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (767, 588.5112752792246, "07/12/2014", "Anne", "Belgium", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (768, 814.8572131360806, "05/08/2012", "Robert", "Netherlands", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (769, 855.5114787057823, "06/12/2013", "Anne", "Belgium", "Adobe", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (770, 374.1877737183147, "01/08/2015", "John", "Canada", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (771, 747.8664532591969, "11/12/2013", "Anne", "Belgium", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (772, 901.7257853432758, "03/17/2015", "John", "Australia", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (773, 257.18714959325126, "10/03/2014", "Anne", "United States", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (774, 581.5010326818672, "01/07/2016", "John", "Australia", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (775, 503.1966123285353, "01/07/2014", "Anne", "United States", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (776, 698.0340009538938, "09/12/2014", "Mary", "Netherlands", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (777, 414.65280969253956, "02/19/2015", "Michael", "United States", "Apple", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (778, 658.7780356768372, "11/25/2014", "Mary", "Netherlands", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (779, 326.30203918048863, "07/31/2015", "Michael", "United Kingdom", "Dell", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (780, 881.6105714209898, "09/18/2012", "Mary", "Canada", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (781, 182.73840089594395, "03/02/2014", "Georgia", "Belgium", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (782, 562.3404329934641, "08/19/2014", "Robert", "Australia", "Microsoft", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (783, 671.0802699631847, "01/27/2013", "Georgia", "Belgium", "Apple", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (784, 528.2607511411667, "08/18/2015", "Mary", "Canada", "Dell", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (785, 178.50106506379336, "03/26/2015", "Anne", "Belgium", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (786, 545.9926034478516, "07/08/2013", "Mary", "Netherlands", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (787, 839.5426274047194, "12/12/2013", "Anne", "United Kingdom", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (788, 829.684529166235, "07/11/2015", "Mary", "Netherlands", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (789, 756.9071965809247, "12/26/2013", "Georgia", "United Kingdom", "Dell", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (790, 324.2485858750336, "07/18/2015", "Robert", "Australia", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (791, 757.4904737258136, "01/04/2014", "Georgia", "Belgium", "Adobe", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (792, 147.74105820104154, "08/07/2014", "Mary", "Netherlands", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (793, 471.48387902290136, "01/12/2012", "Georgia", "Belgium", "Adobe", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (794, 287.80030746945073, "09/03/2015", "John", "Australia", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (795, 628.0224586062972, "02/09/2016", "Georgia", "United Kingdom", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (796, 761.1404891925218, "03/16/2016", "Mary", "Australia", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (797, 746.9932908362609, "03/22/2015", "Michael", "United Kingdom", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (798, 343.64921997188935, "08/10/2015", "Robert", "Netherlands", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (799, 886.4626621059729, "04/27/2014", "Georgia", "United Kingdom", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (800, 820.1527320616539, "02/08/2015", "Mary", "Australia", "Dell", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (801, 219.1469930413855, "08/03/2013", "Georgia", "United Kingdom", "Apple", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (802, 911.1333260448674, "10/09/2015", "John", "Australia", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (803, 189.7987178063022, "08/30/2013", "Georgia", "Belgium", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (804, 124.19548868108443, "08/30/2015", "Robert", "Canada", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (805, 681.8828194579055, "12/14/2013", "Georgia", "Belgium", "Apple", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (806, 126.06655864642968, "04/10/2012", "Mary", "Canada", "Adobe", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (807, 521.1274973569327, "03/01/2016", "Michael", "United States", "Adobe", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (808, 13.058069571099894, "05/16/2012", "John", "Australia", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (809, 993.7798866423126, "03/21/2016", "Anne", "United States", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (810, 915.6042884126713, "12/12/2013", "John", "Australia", "Microsoft", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (811, 289.81018291578187, "01/27/2012", "Anne", "United States", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (812, 918.5928796840756, "04/03/2013", "Mary", "Canada", "Apple", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (813, 82.94944030242812, "03/25/2012", "Michael", "United States", "Google", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (814, 222.0444685502493, "03/30/2015", "Robert", "Canada", "Adobe", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (815, 102.70763448190345, "07/28/2012", "Michael", "United States", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (816, 239.15805855640448, "05/28/2015", "John", "Canada", "Adobe", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (817, 214.20206719781854, "06/14/2015", "Michael", "United States", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (818, 228.35810416387014, "02/17/2016", "Mary", "Netherlands", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (819, 694.2911921661553, "06/24/2013", "Michael", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (820, 668.5940083189876, "11/18/2015", "Mary", "Netherlands", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (821, 858.6970474746508, "12/01/2013", "Michael", "Belgium", "Apple", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (822, 22.574021477139382, "12/02/2015", "Robert", "Netherlands", "Google", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (823, 19.97804133826586, "07/16/2012", "Anne", "Belgium", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (824, 298.8412486384194, "11/05/2013", "John", "Australia", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (825, 188.34431311171738, "04/10/2015", "Anne", "United States", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (826, 27.549826836607558, "05/06/2013", "Mary", "Netherlands", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (827, 500.6250723818896, "12/15/2015", "Michael", "United States", "Google", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (828, 960.301828181911, "02/24/2016", "John", "Canada", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (829, 700.3726417183946, "07/23/2012", "Georgia", "United States", "Google", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (830, 708.1644791727616, "08/20/2013", "Mary", "Canada", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (831, 476.7621784530148, "10/13/2012", "Georgia", "United Kingdom", "Google", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (832, 325.81989311584346, "10/01/2013", "John", "Australia", "Dell", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (833, 829.8237050099565, "06/17/2015", "Anne", "United States", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (834, 409.92609504279375, "10/04/2015", "John", "Netherlands", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (835, 484.426488901205, "04/29/2012", "Michael", "United Kingdom", "Microsoft", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (836, 433.91434599887936, "02/22/2015", "Robert", "Netherlands", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (837, 291.7226719965628, "01/11/2013", "Georgia", "Belgium", "Adobe", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (838, 238.0219096062727, "06/15/2014", "John", "Australia", "Adobe", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (839, 559.9142839642856, "06/07/2015", "Michael", "Belgium", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (840, 232.54140851479664, "02/18/2014", "Robert", "Australia", "Apple", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (841, 277.2133732231158, "09/30/2015", "Anne", "Belgium", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (842, 263.25280965179553, "07/15/2012", "Mary", "Netherlands", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (843, 334.3078058545651, "08/27/2014", "Georgia", "Belgium", "Apple", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (844, 407.68160855796475, "05/30/2013", "Robert", "Canada", "Apple", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (845, 205.29608422680178, "08/09/2013", "Georgia", "Belgium", "Dell", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (846, 325.11244194521885, "01/20/2013", "Mary", "Canada", "Adobe", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (847, 798.0327354814832, "09/11/2015", "Georgia", "United Kingdom", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (848, 981.0538134655261, "12/03/2014", "John", "Australia", "Adobe", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (849, 587.346565258548, "02/25/2013", "Georgia", "United States", "Microsoft", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (850, 239.10747391598542, "09/01/2015", "Mary", "Netherlands", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (851, 744.9887239747112, "06/06/2015", "Georgia", "Belgium", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (852, 879.1319909463439, "03/03/2016", "Mary", "Australia", "Apple", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (853, 885.7151768612454, "01/07/2014", "Georgia", "United Kingdom", "Dell", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (854, 760.2513390754734, "02/15/2015", "John", "Australia", "Adobe", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (855, 719.5739846451366, "07/14/2013", "Michael", "Belgium", "Microsoft", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (856, 232.4371868883791, "09/14/2015", "Robert", "Netherlands", "Dell", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (857, 405.934839197375, "10/20/2012", "Georgia", "United Kingdom", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (858, 88.84451128375936, "07/24/2015", "Mary", "Australia", "Google", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (859, 392.5028121066577, "05/22/2014", "Anne", "Belgium", "Apple", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (860, 212.3739903644094, "03/11/2016", "Robert", "Australia", "Microsoft", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (861, 325.83867650501594, "12/28/2013", "Georgia", "United States", "Microsoft", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (862, 346.69245986717334, "02/02/2015", "Mary", "Canada", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (863, 148.46225995849093, "01/19/2014", "Michael", "Belgium", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (864, 601.570380701986, "05/11/2013", "John", "Canada", "Apple", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (865, 305.2224688945865, "03/31/2015", "Michael", "United States", "Microsoft", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (866, 458.17286412255254, "03/07/2012", "John", "Netherlands", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (867, 982.2159930824802, "10/11/2013", "Georgia", "United Kingdom", "Dell", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (868, 280.3402215059764, "11/24/2015", "Mary", "Australia", "Adobe", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (869, 63.526452902245566, "10/14/2013", "Georgia", "United Kingdom", "Dell", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (870, 823.1412358283104, "03/02/2013", "John", "Australia", "Google", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (871, 127.78109260799974, "07/03/2012", "Anne", "Belgium", "Google", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (872, 173.4956924691583, "10/06/2014", "Robert", "Canada", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (873, 567.0807061430584, "08/02/2014", "Georgia", "Belgium", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (874, 302.59720812438826, "01/07/2016", "John", "Netherlands", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (875, 623.7217395294426, "08/23/2012", "Georgia", "United States", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (876, 928.3047875109027, "06/17/2015", "Robert", "Australia", "Microsoft", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (877, 745.9708315049195, "08/24/2015", "Anne", "United States", "Adobe", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (878, 227.67940474122506, "02/04/2016", "Robert", "Canada", "Google", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (879, 353.00671826729524, "02/10/2015", "Michael", "United States", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (880, 183.00492662866296, "06/21/2013", "Robert", "Canada", "Microsoft", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (881, 944.1315710480284, "05/07/2012", "Georgia", "United Kingdom", "Google", 23); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (882, 633.1883449475207, "06/02/2014", "John", "Australia", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (883, 429.4310160841298, "10/26/2013", "Georgia", "United States", "Microsoft", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (884, 718.6629944285227, "07/31/2013", "Mary", "Australia", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (885, 820.4722602986269, "09/17/2012", "Michael", "Belgium", "Apple", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (886, 263.3339939482927, "08/28/2013", "Robert", "Australia", "Google", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (887, 21.27341346082734, "09/02/2012", "Michael", "Belgium", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (888, 392.6305208192257, "03/12/2015", "Mary", "Canada", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (889, 259.9578291834955, "08/27/2015", "Michael", "Belgium", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (890, 897.3112047997101, "09/10/2014", "Mary", "Canada", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (891, 135.74239969063228, "06/01/2014", "Michael", "United Kingdom", "Adobe", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (892, 125.63753844230796, "05/07/2013", "John", "Netherlands", "Dell", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (893, 342.6832594325938, "08/16/2012", "Georgia", "United States", "Apple", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (894, 139.84500016460754, "08/19/2013", "Robert", "Australia", "Dell", 6); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (895, 737.6555970137069, "04/08/2015", "Michael", "United States", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (896, 756.6281502726221, "09/11/2013", "Mary", "Australia", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (897, 838.1063699102746, "09/11/2013", "Anne", "Belgium", "Adobe", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (898, 648.8817624460498, "03/16/2014", "Robert", "Canada", "Microsoft", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (899, 542.330475117084, "10/04/2012", "Georgia", "Belgium", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (900, 283.02156045105653, "06/17/2014", "Mary", "Canada", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (901, 342.2712457612783, "02/15/2016", "Georgia", "United Kingdom", "Microsoft", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (902, 191.68873085868952, "08/09/2013", "John", "Canada", "Google", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (903, 246.08141925672567, "04/01/2015", "Anne", "United Kingdom", "Microsoft", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (904, 221.00402646238436, "01/11/2012", "Mary", "Netherlands", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (905, 361.93307138095753, "11/02/2014", "Michael", "United States", "Apple", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (906, 168.43272301378443, "10/22/2014", "Robert", "Australia", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (907, 714.7645311751402, "06/02/2015", "Michael", "Belgium", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (908, 964.3367378121198, "06/21/2015", "John", "Canada", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (909, 114.49106611415749, "04/11/2013", "Michael", "United States", "Microsoft", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (910, 926.3256029149404, "08/03/2014", "Mary", "Netherlands", "Adobe", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (911, 777.138462223412, "08/27/2014", "Michael", "United Kingdom", "Apple", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (912, 896.3178383883724, "10/08/2014", "Robert", "Australia", "Google", 30); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (913, 146.93163342431748, "01/20/2015", "Anne", "United States", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (914, 290.8278567824757, "02/18/2014", "John", "Netherlands", "Google", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (915, 396.6151010146212, "08/22/2013", "Michael", "United Kingdom", "Dell", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (916, 321.362098227841, "01/09/2015", "Mary", "Canada", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (917, 810.697477671869, "12/06/2015", "Georgia", "United Kingdom", "Google", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (918, 401.17034611835635, "03/11/2015", "Robert", "Netherlands", "Apple", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (919, 731.0272822187009, "02/13/2012", "Michael", "Belgium", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (920, 542.3007345484573, "01/09/2013", "Mary", "Canada", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (921, 257.89068054557816, "03/25/2014", "Anne", "United Kingdom", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (922, 591.5768215752547, "08/05/2013", "John", "Australia", "Dell", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (923, 918.923380084122, "04/28/2013", "Michael", "United Kingdom", "Adobe", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (924, 988.3333334020482, "05/06/2013", "Mary", "Netherlands", "Adobe", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (925, 837.6540297026226, "11/22/2013", "Anne", "Belgium", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (926, 406.3354455825167, "07/20/2014", "Mary", "Netherlands", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (927, 579.2898631807844, "07/13/2015", "Georgia", "United States", "Microsoft", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (928, 418.54080038883234, "03/28/2014", "Robert", "Australia", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (929, 450.04086874035795, "12/04/2015", "Anne", "United States", "Dell", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (930, 822.9184720648565, "01/03/2013", "Mary", "Canada", "Microsoft", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (931, 258.5525178966107, "10/09/2013", "Anne", "United Kingdom", "Adobe", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (932, 846.7415791349059, "07/15/2013", "Robert", "Australia", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (933, 583.4502235972815, "11/25/2014", "Georgia", "Belgium", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (934, 535.9410263140142, "03/30/2014", "Robert", "Australia", "Google", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (935, 958.5984680191723, "10/13/2013", "Anne", "United Kingdom", "Apple", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (936, 894.4938196991138, "02/15/2013", "Mary", "Netherlands", "Apple", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (937, 700.6604557641182, "10/30/2015", "Michael", "United States", "Dell", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (938, 886.3953852487557, "02/20/2014", "Robert", "Australia", "Dell", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (939, 121.26064635850675, "07/27/2013", "Michael", "Belgium", "Dell", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (940, 177.26670668625576, "05/05/2012", "Robert", "Australia", "Adobe", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (941, 851.7719236357171, "10/10/2012", "Anne", "Belgium", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (942, 849.338897838061, "08/29/2013", "Robert", "Canada", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (943, 814.6115884552555, "05/18/2013", "Georgia", "United States", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (944, 577.5175415292689, "10/21/2015", "John", "Netherlands", "Microsoft", 2); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (945, 412.8011570505544, "06/26/2012", "Michael", "United Kingdom", "Apple", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (946, 242.41833221721342, "03/06/2012", "Robert", "Australia", "Adobe", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (947, 269.99524918428443, "07/08/2013", "Anne", "Belgium", "Microsoft", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (948, 753.3990572678416, "11/18/2013", "John", "Canada", "Adobe", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (949, 247.03829198250838, "01/22/2013", "Michael", "United States", "Microsoft", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (950, 132.35195069612558, "01/03/2014", "John", "Canada", "Apple", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (951, 182.41850126850346, "01/06/2013", "Michael", "United Kingdom", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (952, 493.7899789501089, "07/12/2012", "John", "Netherlands", "Apple", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (953, 287.5436100706951, "09/30/2015", "Georgia", "United Kingdom", "Apple", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (954, 561.6256908534629, "07/03/2012", "Robert", "Australia", "Microsoft", 26); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (955, 94.00700992134648, "11/01/2013", "Georgia", "United Kingdom", "Google", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (956, 382.3644056684542, "07/15/2012", "John", "Australia", "Google", 3); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (957, 67.21575207249907, "11/18/2012", "Anne", "Belgium", "Adobe", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (958, 577.8920976131502, "09/27/2015", "Mary", "Netherlands", "Google", 22); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (959, 837.9592478904347, "03/17/2016", "Michael", "Belgium", "Adobe", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (960, 92.80636374959161, "09/03/2015", "John", "Australia", "Microsoft", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (961, 797.545469939533, "03/27/2016", "Michael", "Belgium", "Microsoft", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (962, 248.853887217375, "09/15/2012", "Robert", "Netherlands", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (963, 442.43103643296143, "09/26/2013", "Georgia", "United States", "Adobe", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (964, 100.58280980380252, "03/25/2013", "John", "Netherlands", "Dell", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (965, 160.45128352968106, "05/01/2013", "Michael", "United States", "Microsoft", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (966, 1.2532375219570504, "08/11/2012", "Robert", "Australia", "Apple", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (967, 802.939014814361, "01/03/2012", "Michael", "United States", "Google", 29); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (968, 822.96027523801, "11/29/2012", "Mary", "Australia", "Google", 4); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (969, 615.9606585241492, "06/22/2015", "Anne", "United States", "Google", 16); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (970, 169.54063632906536, "02/11/2012", "John", "Netherlands", "Dell", 28); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (971, 496.4291556206252, "12/01/2012", "Georgia", "United States", "Dell", 25); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (972, 563.3535551939248, "07/10/2013", "Mary", "Netherlands", "Adobe", 13); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (973, 647.5710482156679, "09/08/2013", "Anne", "Belgium", "Adobe", 18); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (974, 792.9205763546522, "04/03/2016", "Robert", "Canada", "Google", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (975, 151.48336102357652, "01/01/2013", "Anne", "United States", "Dell", 11); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (976, 298.13967779437513, "03/21/2012", "Mary", "Netherlands", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (977, 676.7193449403322, "03/14/2014", "Michael", "United States", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (978, 633.4649473775717, "08/26/2012", "Mary", "Netherlands", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (979, 658.449994496136, "05/06/2014", "Anne", "United States", "Apple", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (980, 775.0757047805508, "05/03/2012", "Mary", "Australia", "Apple", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (981, 98.02899514380414, "03/03/2014", "Georgia", "United Kingdom", "Apple", 27); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (982, 345.2934981636132, "06/20/2013", "John", "Netherlands", "Apple", 8); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (983, 925.8033262216611, "02/11/2015", "Anne", "United States", "Dell", 5); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (984, 340.9231777827125, "12/20/2014", "Mary", "Netherlands", "Microsoft", 14); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (985, 142.32864312679837, "08/24/2015", "Georgia", "United Kingdom", "Adobe", 7); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (986, 52.46192486804546, "11/21/2013", "John", "Netherlands", "Dell", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (987, 435.70132213608423, "03/19/2013", "Georgia", "Belgium", "Dell", 19); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (988, 632.1130388508645, "09/22/2012", "John", "Australia", "Dell", 17); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (989, 852.0663265296556, "01/28/2016", "Anne", "United States", "Dell", 10); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (990, 240.28015264368096, "04/19/2015", "John", "Australia", "Adobe", 12); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (991, 971.5845334686405, "01/12/2015", "Michael", "Belgium", "Apple", 9); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (992, 555.9286682189182, "04/01/2014", "Robert", "Canada", "Dell", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (993, 606.8612713329359, "09/01/2012", "Anne", "United States", "Adobe", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (994, 416.71751166599813, "05/26/2015", "Robert", "Canada", "Google", 20); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (995, 170.3540411166743, "02/26/2014", "Georgia", "United Kingdom", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (996, 157.726003691114, "11/04/2012", "John", "Australia", "Google", 1); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (997, 640.1384509863572, "09/20/2015", "Georgia", "Belgium", "Dell", 21); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (998, 60.27498329846315, "05/23/2013", "John", "Netherlands", "Adobe", 15); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (999, 153.56635588335942, "04/11/2015", "Michael", "Belgium", "Google", 24); INSERT INTO `myTable` (`id`,`value`,`date`,`person`,`country`,`company`,`quantity`) VALUES (1000, 130.72353978430795, "02/12/2013", "Robert", "Australia", "Dell", 21);