Skip to content

Instantly share code, notes, and snippets.

@alvinslee
Created September 16, 2022 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alvinslee/3a7233eab951ec269f3d3fdf9d1e2283 to your computer and use it in GitHub Desktop.
Save alvinslee/3a7233eab951ec269f3d3fdf9d1e2283 to your computer and use it in GitHub Desktop.
Sample dataset for psql
-- This is the file to create COMPANY table and to populate it with 500 records.
-- Just copy and paste this into the psql prompt.
DROP TABLE COMPANY;
CREATE TABLE COMPANY(
ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
EMPLOYEES INT NOT NULL,
ADDRESS CHAR(50),
MONEY REAL
);
INSERT INTO COMPANY (ID,NAME,EMPLOYEES,ADDRESS,MONEY)
VALUES
(1, 'Hamill, Boehm and Gleichner', 5713, 'Mississippi', 63698.00),
(2, 'Walker - Grimes', 16822, 'West Virginia', 87713.00),
(3, 'Deckow - Streich', 2803, 'Kansas', 57840.00),
(4, 'Price Inc', 37336, 'Washington', 24285.00),
(5, 'Kozey - Runolfsdottir', 19517, 'Arkansas', 20009.00),
(6, 'Klocko - Mante', 20451, 'North Carolina', 19240.00),
(7, 'Romaguera, Moen and Mills', 37439, 'South Carolina', 21407.00),
(8, 'Hintz - Labadie', 34482, 'New Hampshire', 17720.00),
(9, 'Kuhic, Gerhold and Schamberger', 21386, 'Ohio', 71770.00),
(10, 'Kunze - Larkin', 14049, 'Wyoming', 53511.00),
(11, 'Waters - Zboncak', 35437, 'Wisconsin', 81091.00),
(12, 'Mann - Gaylord', 18103, 'Pennsylvania', 80957.00),
(13, 'Murphy, Keefe and Conn', 45390, 'Kansas', 44879.00),
(14, 'Shanahan LLC', 11271, 'Ohio', 67732.00),
(15, 'Daniel - Kertzmann', 24512, 'Nevada', 74323.00),
(16, 'Schaefer, Zboncak and Gislason', 45639, 'Utah', 43385.00),
(17, 'Lowe - Kulas', 18476, 'Maryland', 50796.00),
(18, 'Jacobson - Leannon', 43038, 'New York', 94800.00),
(19, 'Bahringer, Schaden and Gorczany', 39291, 'New Mexico', 42248.00),
(20, 'Schmitt, Hoppe and Graham', 3825, 'Pennsylvania', 35044.00),
(21, 'Pagac - Parker', 22234, 'South Dakota', 43535.00),
(22, 'Hickle - Monahan', 973, 'Maryland', 18395.00),
(23, 'Goyette - Barton', 23485, 'Florida', 7518.00),
(24, 'Miller - Borer', 15292, 'Pennsylvania', 4669.00),
(25, 'Goyette and Sons', 2813, 'Oklahoma', 26500.00),
(26, 'Roberts and Sons', 21196, 'Florida', 61664.00),
(27, 'Lockman - Hills', 29283, 'Mississippi', 6970.00),
(28, 'Rodriguez, Mills and Jakubowski', 41419, 'Colorado', 57507.00),
(29, 'Marquardt LLC', 35279, 'Colorado', 63765.00),
(30, 'Wilkinson Inc', 15916, 'Washington', 22758.00),
(31, 'Waelchi LLC', 11931, 'New York', 17680.00),
(32, 'Rohan and Sons', 37233, 'Louisiana', 56517.00),
(33, 'Lynch LLC', 9579, 'Missouri', 67815.00),
(34, 'Pfannerstill, Prosacco and Hackett', 48100, 'New Hampshire', 21606.00),
(35, 'Bogisich Inc', 15976, 'Wisconsin', 71821.00),
(36, 'Amore - Torphy', 10779, 'Louisiana', 38420.00),
(37, 'Smitham - Treutel', 16923, 'Missouri', 34591.00),
(38, 'Weber - Heaney', 28112, 'Kansas', 62184.00),
(39, 'Berge Group', 47476, 'Idaho', 44303.00),
(40, 'Harris and Sons', 33152, 'Indiana', 85524.00),
(41, 'Herman, Kunde and Upton', 8249, 'New York', 18709.00),
(42, 'Bogisich, Strosin and Huel', 31395, 'Ohio', 3254.00),
(43, 'Bode, Champlin and Osinski', 40876, 'Tennessee', 62479.00),
(44, 'Hintz - Keeling', 49929, 'Oregon', 13259.00),
(45, 'Runte - Heaney', 23192, 'Arizona', 29722.00),
(46, 'Bradtke - Cummerata', 39945, 'Indiana', 28831.00),
(47, 'Willms Inc', 2444, 'Missouri', 76099.00),
(48, 'Leuschke - Lind', 43250, 'Tennessee', 42293.00),
(49, 'Purdy Inc', 34481, 'North Carolina', 55361.00),
(50, 'Howell, Carter and Mayert', 6883, 'New Mexico', 70645.00),
(51, 'Jakubowski, Weissnat and Mante', 11020, 'Nevada', 42785.00),
(52, 'Wiegand Group', 11843, 'Tennessee', 58213.00),
(53, 'Nader and Sons', 30630, 'Indiana', 28317.00),
(54, 'Steuber - Schmeler', 6363, 'Ohio', 78534.00),
(55, 'Conner - Tromp', 26277, 'Idaho', 52657.00),
(56, 'Schneider LLC', 641, 'Maryland', 89037.00),
(57, 'Pagac - Oberbrunner', 859, 'Hawaii', 49498.00),
(58, 'Murray and Sons', 25020, 'Montana', 10923.00),
(59, 'Schmitt and Sons', 30640, 'Pennsylvania', 48140.00),
(60, 'Corwin and Sons', 10925, 'Indiana', 46061.00),
(61, 'Bechtelar - Lueilwitz', 28510, 'West Virginia', 39808.00),
(62, 'Hand - Stracke', 22796, 'New Mexico', 70149.00),
(63, 'Bogisich, Schmeler and Conner', 29793, 'Colorado', 52557.00),
(64, 'Daugherty - Davis', 6498, 'New Mexico', 47634.00),
(65, 'Prosacco and Sons', 36587, 'Ohio', 98240.00),
(66, 'Nikolaus, Jerde and Cassin', 3702, 'Missouri', 21498.00),
(67, 'Tillman Inc', 38439, 'Washington', 10948.00),
(68, 'Macejkovic - Rolfson', 46056, 'Colorado', 48615.00),
(69, 'Borer, Blanda and Langosh', 10422, 'Iowa', 66635.00),
(70, 'Wilderman, Jaskolski and Abshire', 20127, 'Louisiana', 85886.00),
(71, 'Lubowitz - Batz', 6597, 'New Jersey', 39628.00),
(72, 'Jacobi - Glover', 1273, 'Rhode Island', 42011.00),
(73, 'Crooks and Sons', 24531, 'South Dakota', 27470.00),
(74, 'Runte, Casper and Block', 6950, 'Colorado', 85257.00),
(75, 'Tillman LLC', 45643, 'Nebraska', 26441.00),
(76, 'Bergnaum - Leannon', 30059, 'Hawaii', 52792.00),
(77, 'Dooley, Frami and Marks', 21477, 'Texas', 23096.00),
(78, 'Greenfelder - Kilback', 45883, 'West Virginia', 59436.00),
(79, 'Reilly and Sons', 18690, 'Minnesota', 7338.00),
(80, 'Funk - Carroll', 1761, 'New Jersey', 72876.00),
(81, 'Berge, Jacobs and Von', 46079, 'Delaware', 98408.00),
(82, 'Swift Inc', 13019, 'Nevada', 16325.00),
(83, 'Huels Group', 22874, 'Alabama', 56862.00),
(84, 'Sawayn, Bashirian and Kovacek', 17978, 'South Carolina', 95854.00),
(85, 'Kovacek - Ritchie', 43672, 'Michigan', 26154.00),
(86, 'Blanda Inc', 15341, 'Georgia', 75660.00),
(87, 'Jerde Group', 38549, 'Mississippi', 80938.00),
(88, 'Hackett, Ebert and Feeney', 23188, 'North Carolina', 46854.00),
(89, 'Reilly - Prohaska', 25801, 'Kansas', 88551.00),
(90, 'Torp Inc', 37161, 'Kentucky', 32717.00),
(91, 'Crist, Lowe and Howell', 36310, 'Connecticut', 42735.00),
(92, 'Greenholt - Casper', 44792, 'Alaska', 38483.00),
(93, 'Ankunding - Gaylord', 30614, 'Tennessee', 20599.00),
(94, 'Hackett, Dare and White', 30894, 'Maryland', 76405.00),
(95, 'Stamm Group', 30931, 'Michigan', 36134.00),
(96, 'Nikolaus, Koss and Mohr', 40750, 'Idaho', 44242.00),
(97, 'Rogahn, Zboncak and Nienow', 9825, 'Alabama', 49419.00),
(98, 'Hettinger Group', 40362, 'Colorado', 7492.00),
(99, 'Harber Group', 21561, 'Kansas', 80560.00),
(100, 'Bins Group', 34226, 'New Mexico', 74481.00),
(101, 'Weimann - Klein', 21600, 'Minnesota', 17676.00),
(102, 'Aufderhar - Ondricka', 42708, 'South Carolina', 1624.00),
(103, 'Block - Jacobi', 32250, 'Michigan', 53523.00),
(104, 'Wyman - Langworth', 22819, 'Texas', 58035.00),
(105, 'Mann, Graham and Bergstrom', 10879, 'Iowa', 19308.00),
(106, 'Zemlak LLC', 23884, 'Massachusetts', 31252.00),
(107, 'Brekke, Auer and Nicolas', 14577, 'North Dakota', 52239.00),
(108, 'Lubowitz, Baumbach and Hackett', 13815, 'Idaho', 82017.00),
(109, 'Herzog, Wiza and Mueller', 40015, 'Minnesota', 94337.00),
(110, 'Sporer LLC', 14914, 'South Carolina', 61565.00),
(111, 'Yundt, Boehm and McClure', 2006, 'Utah', 66514.00),
(112, 'Bahringer Group', 18406, 'Oklahoma', 47875.00),
(113, 'Volkman, Huels and Mills', 40167, 'South Carolina', 24720.00),
(114, 'Goodwin, Klocko and Purdy', 9321, 'Oklahoma', 67647.00),
(115, 'Osinski, Monahan and Hoppe', 7226, 'Wyoming', 39258.00),
(116, 'Williamson, Jenkins and Harber', 40061, 'Montana', 66377.00),
(117, 'Ohara and Sons', 15934, 'Connecticut', 53946.00),
(118, 'Connelly Inc', 17213, 'Missouri', 52291.00),
(119, 'Amore - Oberbrunner', 3926, 'Louisiana', 43165.00),
(120, 'Stroman, Sipes and Wyman', 28175, 'Missouri', 92243.00),
(121, 'Fritsch, Brekke and Kuhn', 1367, 'North Carolina', 50604.00),
(122, 'Jaskolski, Rohan and Hahn', 16595, 'Maryland', 18713.00),
(123, 'Trantow LLC', 38304, 'Nevada', 9770.00),
(124, 'Klocko, Marvin and Ledner', 37575, 'Texas', 99261.00),
(125, 'Nader - Heller', 17735, 'Ohio', 38822.00),
(126, 'Kozey, Emard and Blanda', 32970, 'West Virginia', 29546.00),
(127, 'Satterfield and Sons', 17040, 'Oklahoma', 48634.00),
(128, 'Reichert - Hintz', 19519, 'Texas', 8825.00),
(129, 'Ullrich Inc', 45470, 'Rhode Island', 64628.00),
(130, 'Swaniawski - Beatty', 4, 'Washington', 8180.00),
(131, 'Hyatt Group', 34284, 'Illinois', 39637.00),
(132, 'Pfannerstill LLC', 15495, 'Utah', 14486.00),
(133, 'Kuvalis - Beier', 27391, 'Hawaii', 70732.00),
(134, 'Sporer, Block and Johnston', 7050, 'Maine', 44930.00),
(135, 'Blanda, Trantow and Altenwerth', 23587, 'North Dakota', 28045.00),
(136, 'Beatty Inc', 26977, 'Delaware', 37936.00),
(137, 'Bergstrom LLC', 20787, 'Utah', 26261.00),
(138, 'Metz, Hyatt and Reichert', 11951, 'Rhode Island', 19428.00),
(139, 'Adams, Wiza and Heathcote', 45455, 'Delaware', 71147.00),
(140, 'Grimes, Smith and Rowe', 42408, 'Ohio', 32570.00),
(141, 'Runte, Funk and Homenick', 20851, 'Louisiana', 85755.00),
(142, 'Rutherford, Steuber and Bergstrom', 23814, 'Idaho', 53391.00),
(143, 'Wintheiser, Johns and Lowe', 2500, 'New Mexico', 25069.00),
(144, 'Schuppe, Bartell and Kessler', 17, 'Mississippi', 10259.00),
(145, 'Grady, King and Stamm', 43781, 'Georgia', 65585.00),
(146, 'Mitchell LLC', 1416, 'North Dakota', 88396.00),
(147, 'Hammes - Goyette', 45055, 'Michigan', 43272.00),
(148, 'Wisoky and Sons', 24824, 'South Dakota', 52415.00),
(149, 'Mosciski, Lemke and Breitenberg', 22847, 'Colorado', 39319.00),
(150, 'Keeling - Frami', 3371, 'Kansas', 80073.00),
(151, 'Bartoletti Inc', 3363, 'Idaho', 68680.00),
(152, 'Cummings - Reilly', 3666, 'South Carolina', 41676.00),
(153, 'Strosin Group', 16786, 'South Carolina', 2967.00),
(154, 'Feest and Sons', 32136, 'California', 12044.00),
(155, 'Torp and Sons', 44715, 'Iowa', 22919.00),
(156, 'Ullrich Group', 42688, 'North Dakota', 74484.00),
(157, 'Kautzer - Wolf', 31817, 'Nebraska', 83072.00),
(158, 'Bosco, Kris and Kuvalis', 37816, 'Louisiana', 8024.00),
(159, 'Nicolas, Armstrong and Walsh', 5256, 'Louisiana', 93824.00),
(160, 'Schroeder - Hansen', 6941, 'Hawaii', 32718.00),
(161, 'Gutmann and Sons', 39061, 'North Dakota', 15750.00),
(162, 'Blanda - Hoppe', 35499, 'Maryland', 10984.00),
(163, 'Herzog - Jenkins', 19225, 'Vermont', 38880.00),
(164, 'Waters - Pouros', 11134, 'Rhode Island', 4757.00),
(165, 'Hansen LLC', 14586, 'Missouri', 56644.00),
(166, 'Lemke LLC', 5457, 'Oregon', 15904.00),
(167, 'Wuckert, Reilly and McCullough', 29304, 'Pennsylvania', 12143.00),
(168, 'Brakus - Cronin', 48678, 'Delaware', 73980.00),
(169, 'Sawayn - Gislason', 1807, 'Colorado', 41205.00),
(170, 'Hayes, Thompson and Hintz', 3185, 'Idaho', 93086.00),
(171, 'Adams, Schulist and Kuhlman', 5603, 'Wisconsin', 79286.00),
(172, 'Fritsch - Koss', 21104, 'New Hampshire', 90663.00),
(173, 'Okuneva, Bogan and Mills', 41136, 'Tennessee', 37175.00),
(174, 'Walter, King and Conner', 49971, 'Missouri', 70602.00),
(175, 'Greenholt - Wisoky', 48649, 'Virginia', 70507.00),
(176, 'Hackett, Konopelski and King', 23292, 'Alabama', 24182.00),
(177, 'Langosh - Doyle', 20962, 'Wyoming', 3184.00),
(178, 'Cormier Inc', 14702, 'Nevada', 48363.00),
(179, 'Kunze - Wisoky', 34687, 'Mississippi', 67944.00),
(180, 'Auer, Kris and Bartell', 9541, 'Alabama', 74579.00),
(181, 'Bartoletti Inc', 37799, 'Pennsylvania', 5059.00),
(182, 'Padberg, Lowe and Watsica', 49045, 'Illinois', 76796.00),
(183, 'Pagac - Bartoletti', 3593, 'Kentucky', 67231.00),
(184, 'Balistreri Group', 44723, 'Arizona', 17423.00),
(185, 'Thompson - Pacocha', 23736, 'Illinois', 35892.00),
(186, 'Braun - Gulgowski', 28537, 'Mississippi', 20126.00),
(187, 'Dickens Inc', 23821, 'Rhode Island', 37632.00),
(188, 'Adams LLC', 49844, 'New Hampshire', 34275.00),
(189, 'Wunsch LLC', 25786, 'Oregon', 85009.00),
(190, 'Morar, Koelpin and Mann', 37616, 'Nebraska', 79188.00),
(191, 'Effertz - Price', 45356, 'Maine', 70696.00),
(192, 'Funk Inc', 2298, 'Oregon', 95807.00),
(193, 'Muller - Bernier', 35873, 'New Hampshire', 18959.00),
(194, 'Nicolas LLC', 22158, 'Georgia', 94871.00),
(195, 'Kunze Group', 41239, 'Idaho', 43686.00),
(196, 'Dare and Sons', 40701, 'Oregon', 24736.00),
(197, 'Kuhlman LLC', 36667, 'Delaware', 10637.00),
(198, 'Miller Inc', 40171, 'Louisiana', 94376.00),
(199, 'Thiel - Dare', 21435, 'Arizona', 64479.00),
(200, 'Runte, Fahey and Treutel', 44454, 'Missouri', 49682.00),
(201, 'Langosh, Thompson and Heaney', 38169, 'Oregon', 72034.00),
(202, 'White Inc', 5996, 'Utah', 90020.00),
(203, 'Ullrich Group', 18623, 'Massachusetts', 20559.00),
(204, 'Bosco, Greenholt and Huel', 36501, 'Alabama', 90952.00),
(205, 'Rowe, Hodkiewicz and Rath', 30723, 'Wyoming', 84419.00),
(206, 'Schultz, Keeling and Luettgen', 27024, 'Hawaii', 48820.00),
(207, 'Ruecker Inc', 19781, 'Nebraska', 61381.00),
(208, 'Spencer, Streich and Becker', 22560, 'South Carolina', 74073.00),
(209, 'Rohan, Amore and Rogahn', 12525, 'Louisiana', 86008.00),
(210, 'Kunze, Effertz and Hayes', 48103, 'Wisconsin', 5588.00),
(211, 'Harvey - Waelchi', 49188, 'Massachusetts', 12935.00),
(212, 'Williamson - Walter', 40417, 'California', 53626.00),
(213, 'Mraz - Halvorson', 19199, 'Louisiana', 90598.00),
(214, 'Adams, Zemlak and Goodwin', 3139, 'Kentucky', 61189.00),
(215, 'Bartell Inc', 46052, 'Arizona', 36320.00),
(216, 'Jacobi - Abbott', 21378, 'Georgia', 57464.00),
(217, 'Beier Inc', 2011, 'Florida', 85935.00),
(218, 'Runolfsdottir and Sons', 11988, 'Vermont', 20074.00),
(219, 'Koelpin, Hand and Pollich', 48548, 'Alabama', 81056.00),
(220, 'Wunsch and Sons', 4524, 'Virginia', 39910.00),
(221, 'Emmerich, Bayer and Howell', 4256, 'Utah', 51331.00),
(222, 'Lindgren - Bins', 27019, 'Rhode Island', 57177.00),
(223, 'Kris Group', 17071, 'Arizona', 80162.00),
(224, 'Schuster LLC', 32753, 'Colorado', 85203.00),
(225, 'Mayer, Stehr and Walsh', 46626, 'Colorado', 8659.00),
(226, 'Grant Inc', 25265, 'Indiana', 29810.00),
(227, 'Kuvalis, Schmeler and Sauer', 1752, 'Nebraska', 26207.00),
(228, 'Smitham Group', 23333, 'Michigan', 87571.00),
(229, 'Adams - Block', 48925, 'New York', 85196.00),
(230, 'Prohaska Group', 25599, 'Illinois', 1358.00),
(231, 'Toy - Reinger', 13896, 'Virginia', 81046.00),
(232, 'Terry Inc', 28635, 'Utah', 74369.00),
(233, 'Osinski and Sons', 13222, 'Alabama', 61392.00),
(234, 'Welch Group', 9701, 'North Carolina', 2740.00),
(235, 'Schulist LLC', 1161, 'Hawaii', 18892.00),
(236, 'Bode, Legros and Hilpert', 36914, 'Wyoming', 58614.00),
(237, 'Crona and Sons', 20097, 'Illinois', 87974.00),
(238, 'Crist - Bogisich', 27708, 'Idaho', 13784.00),
(239, 'Glover - Marks', 904, 'Maryland', 47752.00),
(240, 'Schulist Inc', 28883, 'Alabama', 11278.00),
(241, 'Abbott - Hoeger', 43875, 'Nebraska', 75174.00),
(242, 'Keebler Group', 20604, 'Tennessee', 82406.00),
(243, 'Brown - Hettinger', 49380, 'Georgia', 82718.00),
(244, 'Goldner, Cole and Mills', 26152, 'Missouri', 2648.00),
(245, 'Hammes - Upton', 38838, 'Alabama', 13333.00),
(246, 'Morar, Brakus and Rohan', 35504, 'Alaska', 73663.00),
(247, 'Witting, Hamill and Collier', 47902, 'Arizona', 95677.00),
(248, 'Luettgen, Lehner and Denesik', 23050, 'Vermont', 36851.00),
(249, 'Hirthe and Sons', 39239, 'Maine', 9356.00),
(250, 'Gleason, Schmeler and Sporer', 3285, 'Minnesota', 1093.00),
(251, 'Ritchie Group', 43404, 'West Virginia', 53379.00),
(252, 'Veum Inc', 38101, 'Georgia', 1514.00),
(253, 'Ziemann - Rosenbaum', 43177, 'Missouri', 87964.00),
(254, 'Kihn Group', 49790, 'South Dakota', 41825.00),
(255, 'Homenick - Ferry', 23403, 'New Mexico', 44244.00),
(256, 'Ondricka LLC', 31671, 'Kansas', 50111.00),
(257, 'Donnelly and Sons', 35392, 'Hawaii', 88183.00),
(258, 'Halvorson - Kertzmann', 5141, 'Colorado', 73030.00),
(259, 'Kuphal, Koch and Welch', 42193, 'Minnesota', 63095.00),
(260, 'Fahey - Nikolaus', 44540, 'Maine', 43441.00),
(261, 'Kub Group', 19925, 'Connecticut', 75561.00),
(262, 'Hagenes, Wisozk and Dicki', 36587, 'Wisconsin', 83441.00),
(263, 'White - Grant', 38049, 'Georgia', 46810.00),
(264, 'Littel, Frami and Pfannerstill', 18821, 'Montana', 86698.00),
(265, 'Leffler - Cremin', 12176, 'Vermont', 78063.00),
(266, 'McKenzie LLC', 6447, 'California', 17683.00),
(267, 'Mosciski, Schaefer and Beer', 48453, 'Nebraska', 7734.00),
(268, 'Erdman - Waters', 20203, 'Alaska', 73287.00),
(269, 'Champlin, Konopelski and Johns', 10596, 'Delaware', 11561.00),
(270, 'Rau - Fritsch', 3408, 'South Dakota', 90933.00),
(271, 'Hansen LLC', 13557, 'Oklahoma', 13738.00),
(272, 'Lubowitz - Greenholt', 27835, 'California', 20789.00),
(273, 'McDermott LLC', 5666, 'Virginia', 72710.00),
(274, 'Donnelly Inc', 13391, 'South Carolina', 64568.00),
(275, 'Torp, Wunsch and Haley', 6668, 'South Dakota', 35361.00),
(276, 'Schamberger Group', 26816, 'Vermont', 4082.00),
(277, 'Treutel - Stamm', 38162, 'Florida', 34251.00),
(278, 'Emard and Sons', 83, 'New Jersey', 20216.00),
(279, 'Rowe - Schneider', 20850, 'Connecticut', 9344.00),
(280, 'Wolf - Buckridge', 29968, 'California', 11255.00),
(281, 'Rodriguez LLC', 16614, 'Iowa', 75227.00),
(282, 'Rutherford, Rutherford and Dicki', 22986, 'Missouri', 92361.00),
(283, 'Bartell and Sons', 42413, 'Maine', 49807.00),
(284, 'Kemmer, Ebert and Schoen', 24458, 'Colorado', 41687.00),
(285, 'Mosciski - Stokes', 30006, 'Washington', 12324.00),
(286, 'Harber, Rice and Wehner', 39657, 'New Jersey', 35659.00),
(287, 'Brown - Klein', 22125, 'Montana', 89209.00),
(288, 'Jacobson Group', 15110, 'South Carolina', 35448.00),
(289, 'Braun Inc', 8771, 'Texas', 58107.00),
(290, 'Conn and Sons', 17886, 'Kentucky', 57558.00),
(291, 'McCullough, Trantow and Yost', 17530, 'Missouri', 60814.00),
(292, 'Green Inc', 8338, 'Oregon', 81406.00),
(293, 'Wuckert, Jacobi and Weissnat', 28886, 'South Dakota', 67608.00),
(294, 'Rohan, Bergnaum and Greenfelder', 8483, 'West Virginia', 76450.00),
(295, 'Sanford - MacGyver', 9165, 'Indiana', 96463.00),
(296, 'Lind, Pouros and Roob', 2612, 'Oklahoma', 28041.00),
(297, 'Jacobs, Herman and Hauck', 31527, 'South Dakota', 55600.00),
(298, 'Borer, Hartmann and Ullrich', 30186, 'Illinois', 43015.00),
(299, 'Daniel - Feeney', 14527, 'Maine', 87557.00),
(300, 'Nicolas - Rutherford', 20634, 'Maine', 32639.00),
(301, 'Larkin - Schulist', 14623, 'Delaware', 9964.00),
(302, 'Abernathy - Willms', 37723, 'Florida', 19151.00),
(303, 'Terry and Sons', 14061, 'Missouri', 42487.00),
(304, 'Frami - Altenwerth', 8344, 'South Dakota', 44638.00),
(305, 'Bashirian Inc', 10663, 'Ohio', 73000.00),
(306, 'Murray, Kerluke and Keeling', 641, 'Maryland', 5398.00),
(307, 'Collier, Kulas and Bartoletti', 45363, 'Texas', 41773.00),
(308, 'Hills and Sons', 33988, 'Kansas', 67697.00),
(309, 'Wunsch, Bauch and Amore', 33029, 'Oregon', 99079.00),
(310, 'Koch LLC', 20367, 'Connecticut', 6315.00),
(311, 'Fahey, Konopelski and Grimes', 44050, 'Illinois', 15348.00),
(312, 'Hessel - Runolfsdottir', 2324, 'Oregon', 16535.00),
(313, 'Hintz - Gerhold', 43103, 'Arkansas', 6520.00),
(314, 'Terry Inc', 24054, 'Arkansas', 66080.00),
(315, 'Lowe - Smith', 19037, 'Vermont', 99634.00),
(316, 'Mitchell, Streich and Conn', 45633, 'Minnesota', 26437.00),
(317, 'White Group', 18267, 'Wisconsin', 54723.00),
(318, 'Jast, Conner and Prosacco', 3923, 'Mississippi', 75849.00),
(319, 'Orn - Kuphal', 22988, 'Washington', 55661.00),
(320, 'Doyle - Purdy', 19027, 'California', 86708.00),
(321, 'Jacobi Group', 25283, 'Oklahoma', 67290.00),
(322, 'Watsica - Tromp', 41961, 'Montana', 54629.00),
(323, 'Streich, Kulas and Kling', 4919, 'Wyoming', 51083.00),
(324, 'Collier - Jenkins', 9573, 'North Carolina', 22129.00),
(325, 'Corkery - Dickinson', 10135, 'Texas', 12715.00),
(326, 'Bernier, Ankunding and Macejkovic', 12984, 'Wyoming', 35519.00),
(327, 'Crist, Balistreri and Daniel', 30161, 'Alaska', 91857.00),
(328, 'Paucek, Steuber and Kozey', 4221, 'Washington', 10144.00),
(329, 'Kerluke - Heidenreich', 28197, 'North Dakota', 83476.00),
(330, 'Mueller, Keeling and Murazik', 6101, 'Washington', 81213.00),
(331, 'Roob, Casper and Lowe', 19717, 'Indiana', 20881.00),
(332, 'Nikolaus Group', 42568, 'Montana', 65814.00),
(333, 'Reinger, Vandervort and Hudson', 5726, 'Delaware', 71885.00),
(334, 'Crooks - Koelpin', 46184, 'Georgia', 43041.00),
(335, 'Wolf Inc', 7327, 'Pennsylvania', 78061.00),
(336, 'Raynor - King', 14217, 'Alabama', 13634.00),
(337, 'Crist, Bailey and Hodkiewicz', 32292, 'Minnesota', 56586.00),
(338, 'Pollich and Sons', 34723, 'Kentucky', 93635.00),
(339, 'Prosacco and Sons', 49777, 'Pennsylvania', 97308.00),
(340, 'Hessel Group', 46995, 'Louisiana', 69190.00),
(341, 'Mills - Emard', 35038, 'New Jersey', 44058.00),
(342, 'Wiegand - Larkin', 47179, 'Oregon', 79169.00),
(343, 'Kessler, Stamm and Feil', 19188, 'California', 13527.00),
(344, 'Leuschke - Kertzmann', 8362, 'New York', 46272.00),
(345, 'Abbott - OHara', 17252, 'Maryland', 86230.00),
(346, 'Purdy - Krajcik', 17422, 'West Virginia', 4307.00),
(347, 'Prohaska LLC', 41467, 'Virginia', 6445.00),
(348, 'Walsh, Blick and Reinger', 2964, 'South Carolina', 99702.00),
(349, 'Koss Group', 25927, 'Colorado', 47831.00),
(350, 'Krajcik, Heaney and Nikolaus', 49186, 'Nevada', 68177.00),
(351, 'Corwin - Kiehn', 3023, 'Idaho', 7679.00),
(352, 'Leannon and Sons', 33526, 'Missouri', 6596.00),
(353, 'Runte Group', 41054, 'Washington', 45093.00),
(354, 'Blanda LLC', 39534, 'Florida', 88228.00),
(355, 'Kozey - Marks', 24604, 'Louisiana', 12394.00),
(356, 'Monahan Inc', 32183, 'Indiana', 88349.00),
(357, 'Zulauf - Denesik', 23170, 'Mississippi', 91219.00),
(358, 'Monahan - Dooley', 9174, 'West Virginia', 69900.00),
(359, 'Tromp - Bergnaum', 47714, 'Florida', 28366.00),
(360, 'Kirlin and Sons', 34913, 'Maryland', 30782.00),
(361, 'Murray Group', 37284, 'Utah', 28752.00),
(362, 'Johnston, Quitzon and Gibson', 16006, 'South Carolina', 14725.00),
(363, 'Hermann, Tromp and Predovic', 12454, 'North Dakota', 74744.00),
(364, 'Ziemann - Graham', 31632, 'Virginia', 59965.00),
(365, 'Russel Inc', 29812, 'Kentucky', 68649.00),
(366, 'Runolfsson - Heller', 18482, 'Kansas', 88854.00),
(367, 'Graham, Little and White', 11446, 'Hawaii', 10371.00),
(368, 'Cummings Inc', 15851, 'Alaska', 13057.00),
(369, 'Ferry and Sons', 19018, 'Kentucky', 26160.00),
(370, 'Runolfsson, Wilkinson and Carter', 36506, 'Wisconsin', 92628.00),
(371, 'Johnston, Weber and Raynor', 13120, 'Hawaii', 74435.00),
(372, 'Langworth - Lueilwitz', 36878, 'Indiana', 84896.00),
(373, 'Schultz - Ratke', 21609, 'Missouri', 7791.00),
(374, 'Schneider, Nitzsche and Schmitt', 31156, 'Colorado', 18464.00),
(375, 'Kessler - VonRueden', 12142, 'Pennsylvania', 40863.00),
(376, 'Oberbrunner, Steuber and Harvey', 22097, 'Wyoming', 52952.00),
(377, 'Cruickshank Group', 15108, 'Oregon', 70016.00),
(378, 'Rowe and Sons', 37710, 'Louisiana', 98801.00),
(379, 'Lakin - Roberts', 2491, 'Wyoming', 6968.00),
(380, 'Ondricka Inc', 40258, 'Rhode Island', 83608.00),
(381, 'Greenholt, Shanahan and Sporer', 10640, 'Arkansas', 99719.00),
(382, 'Kirlin and Sons', 42373, 'Nebraska', 39055.00),
(383, 'Thompson, Gleason and Medhurst', 28865, 'Colorado', 36947.00),
(384, 'Okuneva - Rogahn', 40151, 'Tennessee', 46506.00),
(385, 'Dicki Group', 36024, 'Wyoming', 74646.00),
(386, 'Dare and Sons', 14833, 'Missouri', 98288.00),
(387, 'Corkery - Labadie', 47804, 'Massachusetts', 89525.00),
(388, 'Trantow, Herzog and Wunsch', 3971, 'New Hampshire', 34163.00),
(389, 'Becker, Hoeger and Koelpin', 45338, 'Alaska', 24631.00),
(390, 'Koch, Leuschke and McCullough', 14093, 'Arizona', 26654.00),
(391, 'Barrows - Spencer', 47119, 'Alaska', 75611.00),
(392, 'Emmerich, Hickle and Kulas', 21820, 'Wisconsin', 92614.00),
(393, 'Schaden - Legros', 42362, 'Colorado', 32591.00),
(394, 'Harris Group', 29821, 'Montana', 14083.00),
(395, 'Cummerata Inc', 46597, 'Wyoming', 22082.00),
(396, 'Dibbert, Goldner and Wiegand', 1684, 'Utah', 99681.00),
(397, 'Lehner Group', 39604, 'Washington', 44386.00),
(398, 'Jast, Larkin and Kozey', 39576, 'Michigan', 7496.00),
(399, 'Roob, Homenick and Schulist', 27468, 'North Carolina', 74936.00),
(400, 'Metz, McLaughlin and Willms', 39675, 'West Virginia', 66376.00),
(401, 'Bernhard Group', 14357, 'Idaho', 14466.00),
(402, 'DuBuque - Brown', 4444, 'Washington', 10232.00),
(403, 'Goyette - Hand', 39316, 'Delaware', 59087.00),
(404, 'Romaguera, Bartell and Terry', 25923, 'Delaware', 58310.00),
(405, 'Daniel, Beer and Nicolas', 7621, 'Iowa', 85881.00),
(406, 'Gaylord LLC', 48461, 'Illinois', 2920.00),
(407, 'Runolfsdottir Inc', 20643, 'Oklahoma', 93831.00),
(408, 'Orn - Cassin', 2811, 'West Virginia', 82853.00),
(409, 'Harvey - Willms', 27382, 'Wisconsin', 64142.00),
(410, 'Blanda and Sons', 8977, 'Texas', 25674.00),
(411, 'Williamson - Lueilwitz', 35135, 'Wisconsin', 94205.00),
(412, 'Purdy, Willms and Hermiston', 29802, 'Arizona', 93877.00),
(413, 'Murray Group', 23228, 'California', 5917.00),
(414, 'Sporer Group', 5234, 'Georgia', 20724.00),
(415, 'Paucek - Waters', 13937, 'Arizona', 21616.00),
(416, 'Tromp - Schmidt', 40739, 'Louisiana', 35199.00),
(417, 'McClure LLC', 7159, 'New Mexico', 2113.00),
(418, 'Padberg and Sons', 38803, 'Texas', 71220.00),
(419, 'Senger, Willms and Will', 38934, 'Missouri', 53869.00),
(420, 'Kunze, Torphy and Hoeger', 13697, 'South Dakota', 52890.00),
(421, 'Baumbach, Leffler and Hamill', 43892, 'New Hampshire', 13757.00),
(422, 'Kshlerin LLC', 7283, 'Wyoming', 66447.00),
(423, 'Kunde LLC', 46504, 'Alaska', 85691.00),
(424, 'Senger, Halvorson and Moore', 3043, 'Maryland', 50396.00),
(425, 'Jaskolski LLC', 17882, 'South Carolina', 98484.00),
(426, 'Boehm - Pollich', 15771, 'Alabama', 88743.00),
(427, 'Lynch, Wisozk and Von', 24786, 'Kentucky', 59918.00),
(428, 'Kulas LLC', 13779, 'California', 83218.00),
(429, 'Smith and Sons', 20102, 'Utah', 52414.00),
(430, 'Ondricka LLC', 4270, 'Texas', 32553.00),
(431, 'Marquardt - Schinner', 4541, 'Hawaii', 11503.00),
(432, 'Jones LLC', 31010, 'Texas', 99319.00),
(433, 'Koelpin - Rohan', 28442, 'Florida', 77433.00),
(434, 'Stanton - Gottlieb', 38093, 'Louisiana', 4189.00),
(435, 'Von LLC', 13339, 'Alaska', 94649.00),
(436, 'Ruecker - Predovic', 12635, 'Nebraska', 91321.00),
(437, 'Ledner - Leannon', 45354, 'Connecticut', 91307.00),
(438, 'Connell LLC', 24335, 'South Dakota', 20458.00),
(439, 'Kautzer Group', 42439, 'Michigan', 48269.00),
(440, 'Anderson - Watsica', 15150, 'Hawaii', 35599.00),
(441, 'Becker and Sons', 47645, 'Oregon', 95053.00),
(442, 'Bradtke and Sons', 41933, 'Oregon', 6210.00),
(443, 'Kihn Group', 26021, 'Montana', 31504.00),
(444, 'Yost, Kassulke and Deckow', 29641, 'Missouri', 95783.00),
(445, 'Farrell, Kub and Larson', 10976, 'Connecticut', 3186.00),
(446, 'West, Carroll and Satterfield', 24602, 'Louisiana', 84063.00),
(447, 'Gaylord LLC', 13715, 'Wisconsin', 60332.00),
(448, 'Beatty Group', 11981, 'Utah', 64581.00),
(449, 'Osinski, Lesch and Prohaska', 12223, 'West Virginia', 85300.00),
(450, 'Anderson and Sons', 5565, 'Wisconsin', 4803.00),
(451, 'Kessler Group', 24396, 'Minnesota', 50690.00),
(452, 'Hackett - Altenwerth', 34621, 'Arizona', 8490.00),
(453, 'Romaguera - Quigley', 11502, 'South Dakota', 17120.00),
(454, 'Hirthe Inc', 48833, 'North Carolina', 40213.00),
(455, 'Koch - Abshire', 49041, 'Idaho', 6342.00),
(456, 'Schmitt - Bogan', 13458, 'Mississippi', 84963.00),
(457, 'Rosenbaum Group', 48585, 'Wyoming', 24663.00),
(458, 'Hammes Inc', 37233, 'Nevada', 5287.00),
(459, 'Brown LLC', 5697, 'Vermont', 11075.00),
(460, 'Buckridge and Sons', 48278, 'Florida', 1849.00),
(461, 'Deckow - Sipes', 45365, 'Oklahoma', 28620.00),
(462, 'Klocko, Leffler and Langosh', 32363, 'New Mexico', 97300.00),
(463, 'Jakubowski - Connelly', 28495, 'Rhode Island', 52528.00),
(464, 'Turner Group', 2396, 'Texas', 6755.00),
(465, 'Kiehn Group', 19046, 'Kansas', 84729.00),
(466, 'Kilback, Carroll and Murphy', 5558, 'Kansas', 50070.00),
(467, 'Monahan and Sons', 44627, 'Texas', 49613.00),
(468, 'Mayer Inc', 9165, 'Connecticut', 12165.00),
(469, 'Rowe - Kassulke', 47449, 'Rhode Island', 15214.00),
(470, 'Cruickshank LLC', 29571, 'Nevada', 92595.00),
(471, 'Heller - Bechtelar', 19065, 'Mississippi', 11375.00),
(472, 'Roob Inc', 45808, 'Pennsylvania', 44185.00),
(473, 'Brakus and Sons', 15337, 'Mississippi', 66999.00),
(474, 'Sawayn - Feil', 19739, 'Missouri', 76820.00),
(475, 'Bosco, Cassin and Sporer', 36187, 'Alaska', 76830.00),
(476, 'Schuppe - Prohaska', 42248, 'Florida', 64965.00),
(477, 'Parker - Durgan', 7967, 'Michigan', 96988.00),
(478, 'Borer and Sons', 37527, 'Florida', 50688.00),
(479, 'Howe and Sons', 43208, 'Arkansas', 35010.00),
(480, 'Effertz LLC', 14585, 'Pennsylvania', 26874.00),
(481, 'Osinski, Ziemann and Abshire', 23362, 'Nevada', 61020.00),
(482, 'Fritsch LLC', 9320, 'Arkansas', 21949.00),
(483, 'Kris - Jakubowski', 2759, 'Delaware', 45747.00),
(484, 'DuBuque - Denesik', 22055, 'Georgia', 49988.00),
(485, 'Hoeger, Murazik and Purdy', 2727, 'New Jersey', 62701.00),
(486, 'Dooley and Sons', 12003, 'Idaho', 98241.00),
(487, 'Marquardt, Howe and Leffler', 16944, 'North Carolina', 60996.00),
(488, 'Mraz - Halvorson', 45756, 'Kentucky', 27109.00),
(489, 'Koss - Hyatt', 24935, 'Maryland', 41129.00),
(490, 'Johnston LLC', 21084, 'Wyoming', 951.00),
(491, 'Schimmel - Schaefer', 41506, 'Texas', 52903.00),
(492, 'Muller - Schmitt', 31029, 'Mississippi', 66512.00),
(493, 'Botsford LLC', 22561, 'Alaska', 31300.00),
(494, 'Nolan, Schinner and Huel', 10881, 'Washington', 87481.00),
(495, 'Kshlerin and Sons', 29223, 'Colorado', 87245.00),
(496, 'Stehr, Ritchie and Lockman', 25948, 'Arkansas', 89314.00),
(497, 'Haley Group', 9968, 'North Dakota', 42472.00),
(498, 'Pollich - Wyman', 30839, 'Hawaii', 12519.00),
(499, 'Emmerich - Gorczany', 25479, 'Wisconsin', 99617.00),
(500, 'Morissette - Rowe', 44590, 'Wisconsin', 33566.00);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment