├── README.md ├── _config.yml ├── quizresults.sql ├── results.db └── statements.sql /README.md: -------------------------------------------------------------------------------- 1 | # learning-sql-programming 2 | 3 | These are the Exercise Files for the LinkedIn Learning course [_Learning SQL Programming_](http://bit.ly/learnsql-github). 4 | 5 | ## Using these files 6 | 7 | The _Learning SQL Programming_ course uses [DB Browser for SQLite](https://sqlitebrowser.org) and a few additional files. These files can be found in this repository. 8 | * *results.db* is the file to use within DB Browser for SQLite. 9 | * *quizresults.sql* is a SQL file suitable for importing into other DBMS tools, but will not work with DB Browser for SQLite. 10 | * *statements.sql* is a listing of each SQL statement used in the course, provided so you can check your work as you follow the course. 11 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate -------------------------------------------------------------------------------- /quizresults.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `states` ( 2 | `state_name` TEXT, 3 | `state_abbrev` TEXT, 4 | `region` TEXT, 5 | `division` TEXT 6 | ); 7 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Alabama','AL','South','East South Central'); 8 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Alaska','AK','West','Pacific'); 9 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Arizona','AZ','West','Mountain'); 10 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Arkansas','AR','South','West South Central'); 11 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('California','CA','West','Pacific'); 12 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Colorado','CO','West','Mountain'); 13 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Connecticut','CT','Northeast','New England'); 14 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Delaware','DE','South','South Atlantic'); 15 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Florida','FL','South','South Atlantic'); 16 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Georgia','GA','South','South Atlantic'); 17 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Hawaii','HI','West','Pacific'); 18 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Idaho','ID','West','Mountain'); 19 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Illinois','IL','Northeast','East North Central'); 20 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Indiana','IN','Northeast','East North Central'); 21 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Iowa','IA','Midwest','West North Central'); 22 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Kansas','KS','Midwest','West North Central'); 23 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Kentucky','KY','South','East South Central'); 24 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Louisiana','LA','South','West South Central'); 25 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Maine','ME','Northeast','New England'); 26 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Maryland','MD','South','South Atlantic'); 27 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Massachusetts','MA','Northeast','New England'); 28 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Michigan','MI','Midwest','East North Central'); 29 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Minnesota','MN','Midwest','West North Central'); 30 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Mississippi','MS','South','East South Central'); 31 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Missouri','MO','Midwest','West North Central'); 32 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Montana','MT','West','Mountain'); 33 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Nebraska','NE','Midwest','West North Central'); 34 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Nevada','NV','West','Mountain'); 35 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('New Hampshire','NH','Northeast','New England'); 36 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('New Jersey','NJ','Northeast','Middle Atlantic'); 37 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('New Mexico','NM','West','Mountain'); 38 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('New York','NY','Northeast','Middle Atlantic'); 39 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('North Carolina','NC','South','South Atlantic'); 40 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('North Dakota','ND','Midwest','West North Central'); 41 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Ohio','OH','Midwest','East North Central'); 42 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Oklahoma','OK','South','West South Central'); 43 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Oregon','OR','West','Pacific'); 44 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Pennsylvania','PA','Northeast','Middle Atlantic'); 45 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Rhode Island','RI','Northeast','New England'); 46 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('South Carolina','SC','South','South Atlantic'); 47 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('South Dakota','SD','Midwest','West North Central'); 48 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Tennessee','TN','South','East South Central'); 49 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Texas','TX','South','West South Central'); 50 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Utah','UT','West','Mountain'); 51 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Vermont','VT','Northeast','New England'); 52 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Virginia','VA','South','South Atlantic'); 53 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Washington','WA','West','Pacific'); 54 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('West Virginia','WV','South','South Atlantic'); 55 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Wisconsin','WI','Midwest','East North Central'); 56 | INSERT INTO `states` (state_name,state_abbrev,region,division) VALUES ('Wyoming','WY','West','Mountain'); 57 | CREATE TABLE `people` ( 58 | `first_name` TEXT, 59 | `last_name` TEXT, 60 | `city` TEXT, 61 | `state` TEXT, 62 | `shirt_or_hat` TEXT, 63 | `quiz_points` NUMERIC, 64 | `team` TEXT, 65 | `signup` TEXT, 66 | `id_number` INTEGER, 67 | `company` TEXT 68 | ); 69 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janice','Howell','Los Angeles','CA','hat',100,'red','2015-02-07','9500','Homenick Group'); 70 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wanda','Alvarez','Riverside','CA','shirt',20,'blue','2016-06-06','9501','Nicolas Inc'); 71 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Laura','Olson','San Mateo','CA','shirt',90,'green','2014-06-17','9502','Hoeger-O''Keefe'); 72 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Garcia','Hicksville','NY','shirt',90,'red','2015-09-05','9503',''); 73 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ryan','Rice','Wilmington','DE','shirt',70,'blue','2014-06-16','9504','Carter-VonRueden'); 74 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Wood','Grand Rapids','MI','shirt',50,'green','2015-06-12','9505','Zboncak-Leannon'); 75 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Banks','New York City','NY','hat',20,'red','2016-02-19','9506','Ullrich, Schroeder and Rempel'); 76 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paula','Montgomery','Mobile','AL','shirt',90,'blue','2015-10-17','9507','Krajcik-Koss'); 77 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jerry','Ferguson','Carol Stream','IL','shirt',80,'green','2014-11-02','9508','Tromp, Schuppe and Jacobs'); 78 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Black','Pensacola','FL','shirt',50,'red','2016-10-12','9509','Cartwright LLC'); 79 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Johnston','Dallas','TX','shirt',70,'blue','2016-04-24','9510',''); 80 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bonnie','Brooks','Bridgeport','CT','hat',90,'green','2015-05-15','9511','Terry-Weber'); 81 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Armstrong','Anchorage','AK','shirt',20,'red','2015-11-17','9512','Bashirian Inc'); 82 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patrick','Johnson','Boise','ID','hat',80,'blue','2015-03-21','9513','Boehm, Grant and Kuphal'); 83 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Mitchell','Burbank','CA','shirt',70,'green','2014-07-23','9514','Steuber LLC'); 84 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','George','Lake Worth','FL','hat',70,'red','2014-03-10','9515','Stehr, Windler and MacGyver'); 85 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jonathan','Ryan','Alexandria','LA','hat',10,'blue','2016-04-13','9516','Davis, Stark and Spencer'); 86 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paul','Williamson','Apache Junction','AZ','hat',40,'green','2014-12-08','9517','Rohan and Sons'); 87 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robin','Hayes','Salinas','CA','shirt',10,'red','2013-12-14','9518','Cole, Cronin and Ruecker'); 88 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Graham','Ogden','UT','shirt',70,'blue','2016-10-14','9519','Bosco Inc'); 89 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robert','Hart','Everett','WA','shirt',90,'green','2014-08-19','9520','Gulgowski and Sons'); 90 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joe','Thompson','Peoria','IL','shirt',100,'red','2016-07-02','9521','Yundt Group'); 91 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Montgomery','Salinas','CA','hat',70,'blue','2016-06-01','9522','Treutel-Luettgen'); 92 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Oliver','Dallas','TX','hat',20,'green','2014-04-25','9523','Rice Group'); 93 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Snyder','Birmingham','AL','hat',100,'red','2016-09-08','9524','Mills and Sons'); 94 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Helen','Berry','New Haven','CT','shirt',70,'blue','2014-11-06','9525','Gerhold-Runte'); 95 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Evans','Phoenix','AZ','shirt',80,'green','2016-06-07','9526','Hagenes and Sons'); 96 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Scott','Thompson','Des Moines','IA','hat',90,'red','2015-11-29','9527','Lang, Spinka and Herman'); 97 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Montgomery','Albuquerque','NM','shirt',20,'blue','2014-08-27','9528','Zulauf-Kozey'); 98 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Willis','Fargo','ND','hat',100,'green','2015-12-04','9529','Simonis LLC'); 99 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('John','Howard','Albany','NY','hat',90,'red','2013-11-28','9530','Denesik Inc'); 100 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Daniels','Port Charlotte','FL','hat',100,'blue','2015-08-22','9531','Ziemann and Sons'); 101 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Nelson','Springfield','MA','hat',90,'green','2015-07-31','9532','Schowalter, Bogan and Franecki'); 102 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gary','Peters','Carson City','NV','shirt',80,'red','2016-07-18','9533',''); 103 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Ellis','El Paso','TX','hat',30,'blue','2014-07-11','9534','Hickle and Sons'); 104 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sharon','Brown','Portland','OR','hat',100,'green','2014-07-29','9535','Sipes, Adams and Steuber'); 105 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Margaret','Hamilton','Detroit','MI','hat',20,'red','2016-06-22','9536','Dickinson, Lakin and Waters'); 106 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','Fox','Baton Rouge','LA','hat',30,'blue','2014-04-17','9537','Jaskolski and Sons'); 107 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Foster','Austin','TX','shirt',90,'green','2016-08-28','9538','Collins and Sons'); 108 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janet','Rodriguez','Stockton','CA','hat',20,'red','2015-01-11','9539',''); 109 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Morales','Fairfax','VA','shirt',30,'blue','2016-01-08','9540',''); 110 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Barbara','Ortiz','Los Angeles','CA','shirt',100,'green','2015-08-16','9541','Smitham, Kertzmann and Leffler'); 111 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tina','Greene','Seattle','WA','hat',80,'red','2014-05-29','9542','Becker, Davis and Moen'); 112 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Lopez','San Francisco','CA','hat',10,'blue','2015-08-12','9543','Schneider and Sons'); 113 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Ford','Fort Wayne','IN','shirt',40,'green','2015-01-19','9544','Howe, Reinger and Ondricka'); 114 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robert','Bradley','Chicago','IL','hat',90,'red','2015-02-25','9545','Gottlieb, Ebert and Kuphal'); 115 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paul','Schmidt','Davenport','IA','shirt',100,'blue','2015-08-22','9546','Luettgen, Schroeder and Green'); 116 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Watkins','Montpelier','VT','hat',70,'green','2016-04-18','9547','Hauck-Brakus'); 117 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Gray','Garden Grove','CA','hat',80,'red','2016-01-08','9548','Johnston-Labadie'); 118 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Reyes','Paterson','NJ','hat',10,'blue','2016-06-19','9549',''); 119 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sarah','Fernandez','Inglewood','CA','hat',20,'green','2016-08-31','9550','Marks, Stanton and Mann'); 120 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Jacobs','Arlington','TX','shirt',20,'red','2016-01-04','9551','Frami Inc'); 121 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anne','Ellis','Baton Rouge','LA','hat',80,'blue','2014-06-14','9552','Padberg-Swaniawski'); 122 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Martinez','Springfield','MA','hat',100,'green','2016-04-28','9553','Boehm-Shields'); 123 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Rodriguez','Rochester','NY','hat',90,'red','2014-08-12','9554','Kemmer, Trantow and Wuckert'); 124 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lawrence','Hill','Saint Petersburg','FL','shirt',80,'blue','2014-01-04','9555',''); 125 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Adams','Lincoln','NE','shirt',80,'green','2016-06-15','9556','Mertz Group'); 126 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Victor','Shaw','Olympia','WA','hat',90,'red','2016-03-29','9557','Spinka and Sons'); 127 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Fred','Peters','Pittsburgh','PA','hat',100,'blue','2015-07-19','9558','Collier Inc'); 128 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jerry','Henderson','Tucson','AZ','shirt',100,'green','2016-04-02','9559','Boehm, Ziemann and Maggio'); 129 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Ray','Brooklyn','NY','hat',10,'red','2014-12-02','9560','White Group'); 130 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Morrison','Bradenton','FL','hat',80,'blue','2015-02-11','9561','Keebler Inc'); 131 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lawrence','Hart','Jacksonville','FL','shirt',100,'green','2016-02-24','9562','Renner Group'); 132 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Thomas','Wilkes Barre','PA','hat',100,'red','2015-04-16','9563','Schimmel Inc'); 133 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','White','Reston','VA','hat',90,'blue','2014-12-15','9564','Morar-Gulgowski'); 134 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Laura','Brown','Miami','FL','shirt',70,'green','2016-01-19','9565',''); 135 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Ferguson','Jefferson City','MO','hat',80,'red','2015-12-20','9566','Purdy-Hahn'); 136 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Cruz','Saint Petersburg','FL','hat',80,'blue','2016-01-31','9567',''); 137 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Williams','Fort Lauderdale','FL','shirt',80,'green','2015-02-13','9568','Heaney, Pouros and Crist'); 138 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Banks','San Francisco','CA','shirt',50,'red','2016-07-13','9569','Collins Group'); 139 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Oliver','Arvada','CO','hat',90,'blue','2015-05-18','9570','Frami and Sons'); 140 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Kelley','Wichita','KS','hat',60,'green','2015-04-27','9571','Green-Lind'); 141 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Palmer','Fresno','CA','shirt',30,'red','2016-02-02','9572',''); 142 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Carr','New York City','NY','hat',10,'blue','2015-06-08','9573','Shanahan, DuBuque and Treutel'); 143 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sharon','Foster','Detroit','MI','hat',70,'green','2016-06-24','9574','Connelly-Fay'); 144 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Williamson','Houston','TX','shirt',30,'red','2015-04-02','9575','Bashirian LLC'); 145 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Harper','Fort Lauderdale','FL','shirt',20,'blue','2015-04-24','9576','Metz-Kling'); 146 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Rivera','Minneapolis','MN','shirt',60,'green','2015-12-23','9577','Hayes, Greenfelder and Schulist'); 147 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Billy','Marshall','Salinas','CA','shirt',90,'red','2015-09-17','9578','Heidenreich-Reynolds'); 148 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louise','Knight','Fort Smith','AR','hat',30,'blue','2014-04-12','9579','Windler-Ondricka'); 149 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Lawson','Des Moines','IA','hat',80,'green','2015-09-27','9580','Schumm-Jakubowski'); 150 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Martinez','Denver','CO','hat',90,'red','2014-01-25','9581','Rowe-Ferry'); 151 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carol','Matthews','Shawnee Mission','KS','hat',90,'blue','2015-01-04','9582','Hirthe, Barton and McGlynn'); 152 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kimberly','Fernandez','Allentown','PA','hat',100,'green','2014-09-16','9583','Dicki Group'); 153 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Bowman','Raleigh','NC','hat',20,'red','2015-06-03','9584','Lesch, Mante and Durgan'); 154 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Greene','Miami','FL','hat',20,'blue','2015-02-11','9585','Cormier-Altenwerth'); 155 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anthony','Day','Norfolk','VA','shirt',100,'green','2014-03-01','9586','Prohaska LLC'); 156 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Gutierrez','Milwaukee','WI','shirt',100,'red','2016-10-23','9587','Schmeler Group'); 157 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Richardson','Richmond','VA','hat',40,'blue','2013-12-26','9588','Corwin, Kulas and Wilderman'); 158 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Howard','Gilbert','Syracuse','NY','hat',90,'green','2014-11-11','9589','Wilkinson-Jacobson'); 159 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Martinez','Memphis','TN','hat',50,'red','2016-06-18','9590','Prosacco-Beatty'); 160 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Green','Tacoma','WA','hat',10,'blue','2014-07-20','9591',''); 161 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sarah','Payne','Corpus Christi','TX','hat',90,'green','2016-05-28','9592',''); 162 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Carr','West Palm Beach','FL','shirt',90,'red','2014-12-16','9593','Bins, Schneider and Rutherford'); 163 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Kim','Sacramento','CA','hat',10,'blue','2015-02-18','9594','Rodriguez, Schroeder and Rippin'); 164 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Marshall','Erie','PA','hat',70,'green','2014-04-04','9595','Moen-Gutkowski'); 165 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Jenkins','Lakewood','WA','shirt',20,'red','2014-11-30','9596','Nitzsche-Veum'); 166 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robert','Hart','Richmond','VA','shirt',90,'blue','2016-07-27','9597','White, Herman and Bailey'); 167 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kelly','Perkins','New Orleans','LA','hat',100,'green','2014-09-06','9598','Herman Inc'); 168 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Murray','Cincinnati','OH','shirt',40,'red','2016-09-30','9599','Trantow-Carroll'); 169 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Turner','Tampa','FL','hat',90,'blue','2015-07-04','9600','Spinka-Gorczany'); 170 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Greene','Miami','FL','hat',100,'green','2014-11-26','9601','Stanton, Runolfsdottir and Pouros'); 171 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Hudson','Albany','GA','shirt',10,'red','2016-07-04','9602','Howe, Romaguera and Osinski'); 172 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judith','Mason','Shreveport','LA','shirt',100,'blue','2015-08-23','9603','Kozey, Padberg and White'); 173 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathleen','Bryant','Huntington','WV','shirt',50,'green','2014-08-07','9604','McKenzie, Runolfsdottir and Green'); 174 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tina','Alexander','Philadelphia','PA','hat',70,'red','2015-08-02','9605','Maggio, Schiller and Rippin'); 175 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Antonio','West','New York City','NY','hat',90,'blue','2015-05-30','9606','Welch LLC'); 176 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Powell','Milwaukee','WI','hat',10,'green','2014-09-08','9607',''); 177 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kimberly','Black','Largo','FL','hat',80,'red','2014-01-13','9608','Weber-Crona'); 178 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Woods','New York City','NY','shirt',10,'blue','2015-12-06','9609','Russel-Shields'); 179 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Carter','Jamaica','NY','hat',70,'green','2013-11-19','9610','Gulgowski, Pfeffer and Sanford'); 180 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','Cole','Orlando','FL','hat',100,'red','2016-05-24','9611','Murphy, Beier and Jacobi'); 181 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jerry','Hawkins','San Francisco','CA','hat',10,'blue','2014-04-25','9612','Schamberger Inc'); 182 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicholas','Cruz','Louisville','KY','hat',80,'green','2016-08-09','9613','Terry-Rippin'); 183 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lillian','King','Houston','TX','shirt',90,'red','2016-03-20','9614','Kemmer-Berge'); 184 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Albert','Lawson','San Francisco','CA','hat',80,'blue','2016-10-21','9615','Kessler, Stamm and Dickinson'); 185 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Reid','Dallas','TX','shirt',90,'green','2015-06-29','9616','Bruen-Rolfson'); 186 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Davis','Sterling','VA','hat',90,'red','2016-04-21','9617',''); 187 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ralph','Burke','Boston','MA','shirt',50,'blue','2015-03-15','9618','Ward LLC'); 188 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lori','Watson','Reston','VA','hat',60,'green','2015-10-29','9619','Douglas, Bernier and Klein'); 189 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Clarence','Reed','Waco','TX','shirt',100,'red','2014-01-27','9620','Wolff Inc'); 190 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Scott','Santa Fe','NM','hat',30,'blue','2015-03-18','9621','Stracke Group'); 191 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Victor','Johnson','Brooklyn','NY','shirt',100,'green','2014-02-25','9622','Kessler, Keeling and Terry'); 192 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','Lynch','Greensboro','NC','shirt',100,'red','2014-08-21','9623','Ratke-Bosco'); 193 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Stewart','Greeley','CO','hat',90,'blue','2014-08-21','9624',''); 194 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Johnny','Lopez','Rockford','IL','hat',80,'green','2016-06-22','9625','Rodriguez and Sons'); 195 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Cooper','San Antonio','TX','shirt',100,'red','2014-07-17','9626','Goodwin LLC'); 196 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Simmons','Bloomington','IN','shirt',80,'blue','2015-06-26','9627','Morissette, Larkin and Murazik'); 197 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Billy','Gray','Columbia','SC','hat',90,'green','2015-05-24','9628','Hettinger, Corwin and Kautzer'); 198 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jonathan','Cook','Portland','OR','shirt',60,'red','2015-09-03','9629','Rolfson-Barrows'); 199 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Nguyen','Portsmouth','NH','hat',40,'blue','2016-08-02','9630','Borer, Kutch and Turcotte'); 200 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Myers','Honolulu','HI','shirt',100,'green','2016-02-29','9631',''); 201 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Scott','Pittsburgh','PA','hat',90,'red','2016-02-04','9632','Hintz-Metz'); 202 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Betty','Wilson','New York City','NY','hat',80,'blue','2015-12-22','9633','Wunsch-Stanton'); 203 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robin','Shaw','Wilmington','NC','shirt',90,'green','2015-11-09','9634','Bosco-Thiel'); 204 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Diana','Gonzales','San Jose','CA','hat',90,'red','2014-04-10','9635','Koelpin Group'); 205 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lawrence','Torres','Warren','MI','shirt',20,'blue','2014-02-19','9636',''); 206 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lillian','Rodriguez','Bridgeport','CT','hat',30,'green','2016-09-07','9637','Quigley-Durgan'); 207 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Martinez','Las Vegas','NV','shirt',10,'red','2015-11-11','9638','Towne-Zemlak'); 208 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Parker','Norwalk','CT','shirt',30,'blue','2014-05-19','9639','Weber-Lakin'); 209 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shawn','Thompson','Lubbock','TX','shirt',70,'green','2016-05-06','9640',''); 210 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Payne','Santa Monica','CA','shirt',90,'red','2016-03-13','9641','Predovic Inc'); 211 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sandra','Green','Fort Wayne','IN','hat',40,'blue','2016-09-24','9642','Davis and Sons'); 212 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ernest','Mills','San Jose','CA','shirt',80,'green','2015-02-17','9643',''); 213 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janet','Brooks','Richmond','VA','shirt',70,'red','2014-10-11','9644','Kilback LLC'); 214 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jerry','Fisher','Wichita','KS','shirt',30,'blue','2015-11-03','9645','Balistreri Group'); 215 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rachel','Robinson','Atlanta','GA','hat',60,'green','2015-06-27','9646','Marks LLC'); 216 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martin','Murray','Bridgeport','CT','shirt',90,'red','2014-05-20','9647','Ruecker, Bruen and Maggio'); 217 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gary','Young','Fayetteville','NC','hat',70,'blue','2014-06-04','9648','Ernser-Jast'); 218 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Watkins','Minneapolis','MN','hat',70,'green','2015-01-27','9649','Morissette and Sons'); 219 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harold','Patterson','Fort Pierce','FL','shirt',50,'red','2015-11-06','9650','Gibson Group'); 220 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Adams','New Orleans','LA','hat',60,'blue','2014-03-18','9651','Gerlach, Upton and Maggio'); 221 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Peterson','Farmington','MI','hat',50,'green','2016-05-12','9652','Gulgowski Group'); 222 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Morgan','Youngstown','OH','hat',80,'red','2014-01-21','9653','Muller-O''Kon'); 223 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Larry','Cruz','Woburn','MA','hat',80,'blue','2014-01-02','9654','O''Hara-Veum'); 224 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Hughes','Los Angeles','CA','hat',100,'green','2016-10-22','9655','Langworth, Schaefer and Stanton'); 225 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Karen','Kelley','Naples','FL','hat',80,'red','2014-09-23','9656','Senger, Casper and Koss'); 226 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Stanley','Fort Lauderdale','FL','shirt',40,'blue','2015-09-05','9657','Huel, Cummerata and Halvorson'); 227 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Larry','Gomez','Kansas City','MO','hat',100,'green','2016-10-08','9658','Bergnaum-Marks'); 228 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathryn','Welch','Olympia','WA','hat',10,'red','2015-05-12','9659','Mayert and Sons'); 229 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phyllis','Webb','Odessa','TX','shirt',100,'blue','2016-08-14','9660','Carroll, Yost and Lang'); 230 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Hughes','Long Beach','CA','hat',100,'green','2015-04-01','9661','Robel, Langworth and Kemmer'); 231 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Crawford','Phoenix','AZ','shirt',90,'red','2015-04-08','9662','Durgan Inc'); 232 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeffrey','Dunn','San Diego','CA','shirt',40,'blue','2016-07-08','9663','Goyette-Kerluke'); 233 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Wheeler','Birmingham','AL','shirt',60,'green','2014-02-02','9664','O''Hara Group'); 234 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Castillo','Mobile','AL','shirt',10,'red','2014-12-13','9665','Jaskolski-Larson'); 235 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Peter','Nelson','Tallahassee','FL','hat',100,'blue','2015-05-22','9666','Steuber, Watsica and Little'); 236 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Evans','Miami','FL','shirt',90,'green','2015-08-15','9667','Roob, Mohr and Baumbach'); 237 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Nichols','Saint Louis','MO','shirt',10,'red','2014-01-11','9668','Wolff, Powlowski and Nitzsche'); 238 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Gordon','Hartford','CT','shirt',70,'blue','2014-10-19','9669','Gulgowski-Smitham'); 239 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Perkins','Lincoln','NE','shirt',60,'green','2015-01-20','9670','Lesch, Frami and Raynor'); 240 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Dean','Portland','OR','shirt',100,'red','2013-12-22','9671','Bayer-Hilll'); 241 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Jackson','Denver','CO','hat',80,'blue','2015-03-12','9672','O''Connell Inc'); 242 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tammy','Gonzales','Columbia','SC','shirt',90,'green','2014-11-01','9673',''); 243 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Morrison','Houston','TX','hat',10,'red','2013-12-06','9674','Hand and Sons'); 244 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Bryant','Durham','NC','hat',10,'blue','2015-03-12','9675','Stroman, Bergstrom and Ryan'); 245 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Benjamin','Bowman','Orlando','FL','shirt',20,'green','2016-09-09','9676','Sauer LLC'); 246 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lois','Coleman','Kansas City','MO','hat',80,'red','2016-03-29','9677','Krajcik and Sons'); 247 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Mills','Tampa','FL','shirt',40,'blue','2014-06-04','9678','Pollich-Rice'); 248 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Lee','San Francisco','CA','hat',50,'green','2014-09-03','9679','Langosh and Sons'); 249 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','Gutierrez','Abilene','TX','hat',100,'red','2015-02-12','9680',''); 250 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ryan','Ramos','Houston','TX','shirt',90,'blue','2016-09-28','9681','Haag-Rodriguez'); 251 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Clarence','Watson','New York City','NY','shirt',10,'green','2016-05-02','9682','Fisher LLC'); 252 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Pamela','Chapman','Toledo','OH','shirt',50,'red','2015-07-09','9683',''); 253 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Stone','Oakland','CA','hat',70,'blue','2016-05-19','9684','Kiehn Inc'); 254 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Medina','Birmingham','AL','shirt',100,'green','2015-11-18','9685','Ullrich LLC'); 255 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jerry','Watkins','Daytona Beach','FL','hat',50,'red','2015-01-22','9686','Nader LLC'); 256 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Russell','Southfield','MI','shirt',90,'blue','2014-08-28','9687',''); 257 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Carter','Philadelphia','PA','shirt',40,'green','2014-11-16','9688','Gutmann Group'); 258 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phillip','Dixon','Brooklyn','NY','shirt',100,'red','2014-01-13','9689','O''Hara-O''Kon'); 259 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Vasquez','El Paso','TX','shirt',20,'blue','2015-09-03','9690','Luettgen, Cassin and Barrows'); 260 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Howard','Odessa','TX','hat',90,'green','2016-05-21','9691','Nienow-Nitzsche'); 261 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','Phillips','West Palm Beach','FL','hat',100,'red','2015-10-21','9692','Jacobson-Bins'); 262 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Dean','Cincinnati','OH','hat',90,'blue','2015-06-06','9693','Rau Inc'); 263 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Diaz','Columbus','OH','shirt',50,'green','2015-03-09','9694','Goodwin LLC'); 264 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Cole','San Bernardino','CA','shirt',100,'red','2014-06-04','9695',''); 265 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Lane','Miami','FL','hat',20,'blue','2016-01-27','9696','Kub and Sons'); 266 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marilyn','Ferguson','Grand Rapids','MI','shirt',20,'green','2015-04-26','9697','McCullough and Sons'); 267 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jose','Cooper','North Little Rock','AR','hat',90,'red','2015-09-15','9698','Glover and Sons'); 268 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marilyn','Davis','Atlanta','GA','hat',100,'blue','2015-05-09','9699','Schinner Inc'); 269 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Cruz','Hollywood','FL','hat',10,'green','2015-04-29','9700','Ernser-Weimann'); 270 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Harrison','San Diego','CA','shirt',100,'red','2016-05-28','9701','Pouros Inc'); 271 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Elliott','Port Washington','NY','shirt',60,'blue','2015-09-07','9702',''); 272 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Hanson','Honolulu','HI','shirt',90,'green','2016-02-13','9703','Morissette-Kassulke'); 273 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Price','Harrisburg','PA','hat',40,'red','2015-11-11','9704','Dietrich Group'); 274 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Clark','Baton Rouge','LA','shirt',70,'blue','2015-07-18','9705','Braun-Rau'); 275 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Arthur','Bishop','Tacoma','WA','hat',20,'green','2014-10-22','9706','Grady, Ruecker and Howell'); 276 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judy','Ramirez','San Diego','CA','hat',100,'red','2013-12-10','9707','Brekke Group'); 277 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Sims','Portland','OR','shirt',70,'blue','2016-05-11','9708',''); 278 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Russell','Oklahoma City','OK','shirt',80,'green','2016-06-15','9709','Hermiston LLC'); 279 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Perkins','Annapolis','MD','hat',90,'red','2016-04-09','9710',''); 280 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lori','Johnson','Johnson City','TN','shirt',80,'blue','2016-03-19','9711','Predovic, Borer and Hauck'); 281 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Frazier','Las Vegas','NV','hat',50,'green','2015-09-27','9712','Baumbach LLC'); 282 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Mendoza','Akron','OH','hat',60,'red','2016-08-08','9713','Hackett-Williamson'); 283 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Wallace','Silver Spring','MD','shirt',80,'blue','2013-12-15','9714','Batz Inc'); 284 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alice','Miller','Daytona Beach','FL','hat',70,'green','2015-11-29','9715','Padberg-Cummings'); 285 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Terry','Fernandez','Shawnee Mission','KS','hat',40,'red','2014-11-20','9716',''); 286 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Warren','Springfield','MA','hat',80,'blue','2013-12-28','9717','Waelchi-Smith'); 287 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Matthews','Miami','FL','hat',10,'green','2014-11-28','9718','Boyer, Senger and Lemke'); 288 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Chris','Wilson','Lake Charles','LA','hat',70,'red','2014-02-24','9719','Hartmann-Kirlin'); 289 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Susan','Welch','Rochester','NY','hat',70,'blue','2016-11-14','9720','Hoeger, Boyle and Emard'); 290 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Todd','Ross','Houston','TX','hat',20,'green','2016-09-29','9721',''); 291 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrea','Hart','Charleston','WV','hat',80,'red','2014-07-24','9722','Reinger, Hills and Anderson'); 292 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gregory','Fields','Phoenix','AZ','hat',90,'blue','2016-06-05','9723','Parisian, Blanda and Schinner'); 293 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Henry','Burns','Santa Ana','CA','shirt',60,'green','2014-06-03','9724','Jerde-Yundt'); 294 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Chris','Jenkins','Albany','NY','shirt',70,'red','2016-03-20','9725','Deckow-Hudson'); 295 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Carter','Dallas','TX','hat',70,'blue','2015-05-18','9726','Gottlieb-Cole'); 296 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Washington','El Paso','TX','hat',90,'green','2015-12-08','9727','Bruen-Stracke'); 297 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Young','Great Neck','NY','hat',50,'red','2016-05-15','9728','O''Reilly, Pfeffer and Reichel'); 298 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Harper','Nashville','TN','shirt',20,'blue','2015-08-20','9729','Lockman, Goodwin and Waelchi'); 299 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Wells','San Francisco','CA','hat',40,'green','2014-02-22','9730',''); 300 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Susan','Dixon','San Francisco','CA','hat',60,'red','2014-05-09','9731','Reichel and Sons'); 301 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Katherine','Warren','Canton','OH','shirt',80,'blue','2016-06-20','9732','Bechtelar-Bosco'); 302 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Oliver','Santa Barbara','CA','hat',100,'green','2016-04-12','9733','Friesen LLC'); 303 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harry','Freeman','Baltimore','MD','hat',60,'red','2014-01-10','9734','Harris, Corkery and Ryan'); 304 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Roberts','Bakersfield','CA','hat',30,'blue','2016-10-28','9735','Roberts, Lynch and Nitzsche'); 305 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Bishop','Sioux Falls','SD','hat',60,'green','2015-05-11','9736','Goldner LLC'); 306 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Roberts','Atlanta','GA','hat',90,'red','2015-10-16','9737','Conn-Ryan'); 307 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Palmer','Wichita','KS','shirt',50,'blue','2016-01-16','9738',''); 308 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gary','Greene','Mesa','AZ','hat',40,'green','2015-10-08','9739','Moore-Rutherford'); 309 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Elliott','Corona','CA','hat',60,'red','2014-01-22','9740','Hauck-Gerlach'); 310 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bonnie','Sanchez','Fort Smith','AR','shirt',10,'blue','2016-07-22','9741','Brekke-Romaguera'); 311 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Stewart','Atlanta','GA','shirt',50,'green','2016-02-21','9742','Toy, Tromp and Waters'); 312 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Rogers','New York City','NY','shirt',10,'red','2014-03-05','9743','Wuckert, Huels and Wilderman'); 313 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brenda','Miller','Cincinnati','OH','hat',100,'blue','2013-11-29','9744','Schmeler-Miller'); 314 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Scott','Tyler','TX','hat',90,'green','2016-07-12','9745','Weber-Conn'); 315 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christopher','Kim','Oklahoma City','OK','hat',100,'red','2016-07-25','9746','Sporer, VonRueden and Casper'); 316 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Martin','Sacramento','CA','shirt',90,'blue','2016-05-04','9747','Harris, Braun and Wisozk'); 317 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Terry','Bradley','Schenectady','NY','hat',60,'green','2014-08-19','9748','Deckow, Nikolaus and Considine'); 318 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Peter','Murray','Mobile','AL','hat',60,'red','2016-05-03','9749','McDermott, Koch and Mayert'); 319 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Kelly','Louisville','KY','hat',70,'blue','2015-12-02','9750',''); 320 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Hunter','Albuquerque','NM','hat',60,'green','2014-05-07','9751','Johns LLC'); 321 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Phillips','Minneapolis','MN','hat',90,'red','2016-10-18','9752',''); 322 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Perkins','Madison','WI','hat',50,'blue','2016-05-27','9753','Wolf LLC'); 323 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Thomas','Tacoma','WA','hat',80,'green','2015-09-25','9754',''); 324 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Clark','Huntsville','AL','hat',60,'red','2014-03-24','9755','Goldner, Gulgowski and Murazik'); 325 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Sullivan','Corpus Christi','TX','hat',90,'blue','2015-09-26','9756','Haag, Kerluke and Dach'); 326 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Elliott','Mesquite','TX','shirt',100,'green','2015-09-19','9757','Fay, Runte and Steuber'); 327 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Daniel','Williamson','San Francisco','CA','shirt',30,'red','2014-05-24','9758','Hand LLC'); 328 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Reed','Fort Worth','TX','hat',100,'blue','2016-09-16','9759','Little and Sons'); 329 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','West','Colorado Springs','CO','hat',40,'green','2014-10-20','9760','Sipes LLC'); 330 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janice','Peterson','Montgomery','AL','hat',80,'red','2014-09-25','9761','Predovic, Baumbach and Denesik'); 331 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Chavez','San Jose','CA','hat',50,'blue','2014-06-11','9762','Metz-Bartoletti'); 332 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Graham','Las Vegas','NV','hat',100,'green','2016-11-01','9763','Tremblay-Robel'); 333 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Richards','Columbus','OH','hat',20,'red','2016-11-12','9764','Simonis-Wiegand'); 334 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lawrence','Ryan','Waterbury','CT','hat',70,'blue','2014-09-13','9765','Runolfsdottir, O''Conner and Marvin'); 335 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Richards','Littleton','CO','shirt',50,'green','2015-04-23','9766','Hilpert-Thompson'); 336 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Norma','Simpson','North Hollywood','CA','hat',90,'red','2016-06-22','9767',''); 337 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Larry','Cole','New York City','NY','hat',80,'blue','2015-07-10','9768','Emmerich-Bradtke'); 338 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Victor','Gray','Columbus','OH','shirt',80,'green','2014-11-23','9769','Williamson, Mraz and D''Amore'); 339 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lisa','Wallace','Louisville','KY','hat',80,'red','2014-05-18','9770','Tromp-Romaguera'); 340 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Burton','Spring','TX','shirt',90,'blue','2016-06-29','9771','Reichel Group'); 341 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Ryan','Buffalo','NY','hat',80,'green','2014-10-16','9772','Schroeder, Dickinson and Ryan'); 342 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Howard','Phoenix','AZ','shirt',70,'red','2016-02-03','9773','Lesch-Kovacek'); 343 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sarah','Allen','Anaheim','CA','hat',80,'blue','2016-08-02','9774',''); 344 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Johnson','Kansas City','MO','shirt',10,'green','2016-07-26','9775','O''Connell, Mills and Wehner'); 345 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Jacobs','Lexington','KY','hat',50,'red','2015-12-14','9776','Ondricka, Nitzsche and Lind'); 346 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Henry','Abilene','TX','shirt',90,'blue','2014-01-02','9777','Leuschke, Collins and Rath'); 347 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeffrey','Sanchez','Bethlehem','PA','shirt',80,'green','2015-02-15','9778','Schuppe, Mayert and Morissette'); 348 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Todd','Mason','Oklahoma City','OK','hat',90,'red','2014-08-19','9779','Bednar LLC'); 349 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patricia','Riley','Louisville','KY','hat',40,'blue','2014-03-22','9780','Moore, Hyatt and Blick'); 350 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mark','George','Metairie','LA','shirt',90,'green','2014-12-25','9781','Morissette, Kutch and Koch'); 351 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Warren','Mount Vernon','NY','hat',90,'red','2014-09-11','9782','Skiles, Leannon and Wyman'); 352 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Stephens','Baltimore','MD','hat',90,'blue','2016-04-03','9783','Kuhn Group'); 353 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frances','Barnes','San Antonio','TX','shirt',90,'green','2016-09-26','9784','Feest-Price'); 354 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Green','Independence','MO','shirt',100,'red','2015-07-18','9785','Hauck-Wisozk'); 355 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janet','Ferguson','Florence','SC','shirt',90,'blue','2014-08-06','9786','Auer and Sons'); 356 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Antonio','Hart','Young America','MN','shirt',90,'green','2013-12-18','9787','Feest Inc'); 357 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Russell','Peoria','IL','hat',40,'red','2016-10-01','9788','Hodkiewicz, Osinski and Larson'); 358 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Perry','San Antonio','TX','hat',90,'blue','2013-11-20','9789','Reichert and Sons'); 359 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robin','Gardner','Vero Beach','FL','hat',30,'green','2015-04-10','9790','Morar-Yundt'); 360 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Cole','Chicago','IL','shirt',100,'red','2015-05-21','9791','Grady, Ernser and Wuckert'); 361 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Henry','Anderson','SC','hat',90,'blue','2016-07-09','9792','Pollich Group'); 362 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Henderson','Peoria','IL','hat',90,'green','2014-02-13','9793','Hirthe Group'); 363 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Fernandez','Chicago','IL','hat',20,'red','2014-05-28','9794','Mante, Larkin and MacGyver'); 364 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Freeman','Fort Lauderdale','FL','hat',60,'blue','2015-09-21','9795','Vandervort, Bartoletti and Stanton'); 365 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Peterson','El Paso','TX','hat',70,'green','2016-08-24','9796','Harris-Heidenreich'); 366 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','Myers','Charlotte','NC','shirt',20,'red','2015-05-12','9797','Schuster, Streich and Schaefer'); 367 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steven','Green','Atlanta','GA','shirt',30,'blue','2016-05-26','9798',''); 368 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Stanley','Harrisburg','PA','hat',90,'green','2015-08-29','9799','Hintz and Sons'); 369 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathy','Riley','Memphis','TN','hat',60,'red','2015-12-17','9800','Gaylord Inc'); 370 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Gutierrez','Sioux Falls','SD','shirt',80,'blue','2015-03-20','9801','Wehner, Beer and Fadel'); 371 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Wagner','Jackson','MS','hat',40,'green','2015-08-25','9802','Gusikowski, Gerlach and Kihn'); 372 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Kennedy','Punta Gorda','FL','hat',80,'red','2016-01-01','9803','Green-Kreiger'); 373 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Gardner','Huntington','WV','shirt',90,'blue','2014-04-10','9804','Price-Effertz'); 374 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Fowler','Albuquerque','NM','shirt',60,'green','2015-03-04','9805','Baumbach Group'); 375 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','Gomez','Montgomery','AL','shirt',40,'red','2014-01-18','9806','Weissnat-Cremin'); 376 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Cox','Philadelphia','PA','shirt',90,'blue','2014-04-26','9807','Corkery LLC'); 377 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joseph','Howard','Baltimore','MD','shirt',100,'green','2015-06-14','9808','O''Keefe, Nader and Bartell'); 378 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cynthia','Evans','San Antonio','TX','shirt',30,'red','2015-06-05','9809','Emard, Ruecker and Halvorson'); 379 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Fox','Birmingham','AL','hat',90,'blue','2015-07-15','9810','Lind-Bernier'); 380 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('George','White','Billings','MT','hat',70,'green','2014-01-09','9811','Cremin-Pagac'); 381 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sandra','Bryant','Newport Beach','CA','hat',80,'red','2016-07-07','9812',''); 382 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Garrett','Louisville','KY','hat',50,'blue','2014-09-19','9813','Macejkovic, Orn and Smith'); 383 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mark','Williams','Jacksonville','FL','hat',70,'green','2016-01-17','9814','Mann Inc'); 384 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Burton','Milwaukee','WI','hat',80,'red','2016-04-30','9815','Lemke Inc'); 385 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patrick','Gordon','Spokane','WA','hat',40,'blue','2016-07-18','9816','Walter, Gutmann and Berge'); 386 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robin','Wheeler','Los Angeles','CA','hat',90,'green','2015-12-23','9817','Hammes-Okuneva'); 387 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lillian','Kim','Richmond','VA','hat',20,'red','2014-10-10','9818','Connelly-Schinner'); 388 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Katherine','Kennedy','Brooklyn','NY','hat',50,'blue','2016-01-20','9819','Nolan Group'); 389 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Mason','Lexington','KY','hat',20,'green','2015-01-17','9820','Pagac and Sons'); 390 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Hanson','Palm Bay','FL','shirt',90,'red','2015-11-20','9821','Stiedemann, Schaden and Lakin'); 391 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeremy','Boyd','San Antonio','TX','hat',80,'blue','2016-05-07','9822','Osinski, Thompson and Haag'); 392 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Gonzalez','Milwaukee','WI','shirt',90,'green','2015-01-11','9823',''); 393 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Helen','Thompson','Dayton','OH','hat',40,'red','2013-11-26','9824','Lowe Inc'); 394 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Henry','Kim','Bradenton','FL','shirt',70,'blue','2015-11-21','9825','Wintheiser LLC'); 395 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Ortiz','Bakersfield','CA','hat',90,'green','2014-08-30','9826','Rohan Inc'); 396 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Simpson','Akron','OH','shirt',60,'red','2014-03-12','9827','Schulist and Sons'); 397 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Ward','Frankfort','KY','hat',80,'blue','2014-01-31','9828','Wisoky, Reichel and Mante'); 398 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Elliott','Kansas City','MO','hat',100,'green','2014-12-21','9829','Zemlak and Sons'); 399 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bobby','Garrett','Shawnee Mission','KS','hat',100,'red','2015-11-14','9830','Labadie, Legros and Reichert'); 400 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Betty','Hall','Oakland','CA','shirt',100,'blue','2015-10-17','9831','Schinner, Emard and Osinski'); 401 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Moreno','Fort Lauderdale','FL','hat',10,'green','2016-03-26','9832','Hackett-Sipes'); 402 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judy','Johnson','High Point','NC','hat',80,'red','2016-07-05','9833','Bogisich and Sons'); 403 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('John','White','Annapolis','MD','hat',90,'blue','2015-09-15','9834','Vandervort Inc'); 404 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Brown','Murfreesboro','TN','shirt',80,'green','2014-06-27','9835','Haag Inc'); 405 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harold','Richards','El Paso','TX','hat',10,'red','2014-09-08','9836','Hansen LLC'); 406 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Montgomery','Newton','MA','shirt',60,'blue','2014-04-02','9837',''); 407 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ryan','Webb','Burbank','CA','hat',10,'green','2014-05-23','9838','Hickle and Sons'); 408 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mary','Ruiz','San Angelo','TX','shirt',70,'red','2013-12-05','9839','Kris Group'); 409 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Clark','Atlanta','GA','shirt',50,'blue','2016-10-18','9840','Wiza Group'); 410 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wanda','Torres','Winston Salem','NC','shirt',10,'green','2014-12-29','9841','Jacobi Group'); 411 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Harris','Denver','CO','shirt',90,'red','2016-08-21','9842','Dibbert-Rowe'); 412 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Porter','Denver','CO','hat',60,'blue','2016-06-27','9843','Weber, Herman and Hermann'); 413 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bobby','Lynch','Oakland','CA','shirt',80,'green','2014-08-29','9844','Predovic, Witting and Koepp'); 414 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','West','Fort Lauderdale','FL','hat',90,'red','2016-02-03','9845','Moore and Sons'); 415 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Rivera','El Paso','TX','hat',50,'blue','2015-10-31','9846','Rosenbaum LLC'); 416 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Howell','Detroit','MI','hat',30,'green','2015-09-27','9847','Ullrich Inc'); 417 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Ray','Chicago','IL','shirt',80,'red','2016-09-01','9848','Carroll, Weber and Smith'); 418 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Hudson','Sioux City','IA','hat',80,'blue','2016-08-20','9849','Marvin-Simonis'); 419 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sean','Lane','Greensboro','NC','hat',90,'green','2016-05-30','9850','Gerlach-White'); 420 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Richardson','Charlotte','NC','hat',40,'red','2014-08-09','9851','Cartwright Group'); 421 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Gibson','Sacramento','CA','hat',80,'blue','2014-02-17','9852',''); 422 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Carter','Las Vegas','NV','hat',20,'green','2016-02-24','9853','Beatty Inc'); 423 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Justin','Stanley','Spokane','WA','hat',100,'red','2014-03-03','9854','Koepp Group'); 424 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Garrett','Saint Petersburg','FL','shirt',30,'blue','2016-09-15','9855','Osinski, Greenholt and Spencer'); 425 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kimberly','Chavez','Idaho Falls','ID','hat',70,'green','2014-01-27','9856','Will Inc'); 426 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Hamilton','Albany','NY','hat',40,'red','2015-08-14','9857','Glover-Reynolds'); 427 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Barnes','Irving','TX','hat',90,'blue','2016-10-19','9858',''); 428 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathy','Collins','Salt Lake City','UT','hat',100,'green','2014-08-31','9859','Johnston-Tromp'); 429 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Fox','Lansing','MI','shirt',80,'red','2014-04-30','9860','Bailey, Farrell and Kuvalis'); 430 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathryn','Day','Sacramento','CA','hat',90,'blue','2016-03-16','9861','Beahan Inc'); 431 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Murphy','Fort Lauderdale','FL','shirt',90,'green','2014-10-10','9862','Tromp-Raynor'); 432 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Snyder','Springfield','MO','shirt',90,'red','2015-03-29','9863','Armstrong, Herman and Wisoky'); 433 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mildred','Ortiz','San Francisco','CA','hat',70,'blue','2016-03-29','9864','Vandervort, Larson and Ferry'); 434 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Arnold','Glendale','CA','hat',40,'green','2014-01-03','9865','Renner-Corkery'); 435 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Ross','Houston','TX','shirt',90,'red','2015-02-01','9866','Gislason LLC'); 436 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phyllis','Clark','Norfolk','VA','shirt',100,'blue','2016-08-25','9867',''); 437 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Franklin','Boise','ID','shirt',20,'green','2015-11-02','9868','Bednar LLC'); 438 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Todd','Richards','San Jose','CA','hat',100,'red','2015-06-20','9869','Schulist-Mills'); 439 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','Daniels','Boston','MA','shirt',80,'blue','2014-06-26','9870','Heathcote LLC'); 440 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Marshall','San Antonio','TX','shirt',70,'green','2014-11-20','9871','Sanford LLC'); 441 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Rivera','Fayetteville','NC','hat',50,'red','2016-05-04','9872','Beatty, Predovic and Oberbrunner'); 442 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Beverly','Garza','El Paso','TX','shirt',90,'blue','2014-03-29','9873','Abernathy LLC'); 443 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julie','Grant','Albany','NY','hat',90,'green','2015-12-14','9874','Fadel Group'); 444 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Butler','Midland','TX','hat',100,'red','2016-06-06','9875','Hackett-Metz'); 445 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Greene','Augusta','GA','shirt',90,'blue','2015-12-05','9876','Stroman, Nikolaus and Feest'); 446 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sandra','Lawrence','Van Nuys','CA','shirt',90,'green','2016-04-09','9877','Nikolaus-Mann'); 447 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joshua','Perkins','Corpus Christi','TX','hat',90,'red','2015-09-02','9878','Frami-Lynch'); 448 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Duncan','Miami Beach','FL','hat',70,'blue','2015-07-29','9879','Stoltenberg-Lakin'); 449 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eric','Turner','Akron','OH','hat',70,'green','2015-07-22','9880','Murphy Inc'); 450 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Matthews','Vienna','VA','shirt',80,'red','2015-10-03','9881',''); 451 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phyllis','George','Kansas City','MO','hat',40,'blue','2015-07-05','9882','Herman-Borer'); 452 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','West','Corpus Christi','TX','shirt',30,'green','2015-12-20','9883','Lockman-Russel'); 453 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paula','Bishop','Naples','FL','shirt',100,'red','2014-11-08','9884','Feeney, White and Corwin'); 454 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathryn','Banks','Rochester','NY','shirt',30,'blue','2014-05-14','9885','Predovic, Beahan and Bahringer'); 455 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Ruiz','Palo Alto','CA','hat',90,'green','2015-03-29','9886','Sanford, Blick and Beer'); 456 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Gonzalez','Chicago','IL','shirt',100,'red','2014-09-13','9887','Little-Armstrong'); 457 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patrick','Hunt','Spartanburg','SC','shirt',90,'blue','2014-09-14','9888',''); 458 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christopher','Hunter','Peoria','IL','hat',70,'green','2015-06-30','9889','Harvey LLC'); 459 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Jones','Grand Rapids','MI','shirt',80,'red','2013-12-20','9890',''); 460 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','Stone','Lynn','MA','hat',100,'blue','2016-04-09','9891','Baumbach and Sons'); 461 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Morgan','Moreno Valley','CA','shirt',100,'green','2015-10-08','9892',''); 462 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sara','Payne','Springfield','MA','shirt',100,'red','2016-01-31','9893','Emmerich-Gleason'); 463 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Graham','Tulsa','OK','hat',90,'blue','2014-03-12','9894',''); 464 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Henry','San Jose','CA','hat',80,'green','2015-02-28','9895','Lockman, Conroy and Lind'); 465 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Cunningham','Milwaukee','WI','hat',20,'red','2015-05-12','9896',''); 466 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Beverly','Hudson','Kansas City','KS','hat',100,'blue','2016-01-16','9897','Ruecker-Moen'); 467 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Payne','Dayton','OH','shirt',80,'green','2016-03-02','9898','Abernathy, Crona and Watsica'); 468 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ryan','Hayes','Houston','TX','hat',20,'red','2014-05-30','9899','Spencer-Toy'); 469 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Reynolds','Port Charlotte','FL','hat',40,'blue','2013-12-26','9900','Becker-Heller'); 470 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Bowman','Lincoln','NE','hat',30,'green','2014-08-20','9901','Gleichner, Mohr and Casper'); 471 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Aaron','Jacobs','Albuquerque','NM','shirt',70,'red','2016-03-03','9902',''); 472 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Freeman','Macon','GA','shirt',90,'blue','2016-01-01','9903','Mayer-Kilback'); 473 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Clarence','Williamson','Raleigh','NC','hat',100,'green','2014-12-03','9904','Lesch-Grady'); 474 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Barbara','Garza','North Little Rock','AR','shirt',80,'red','2016-04-16','9905','Lang Inc'); 475 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Ruiz','Hampton','VA','hat',90,'blue','2016-04-04','9906','Mayert, Huel and Greenholt'); 476 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eric','Martinez','Charlotte','NC','shirt',90,'green','2014-03-08','9907','Conroy-Bednar'); 477 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lori','Burke','Los Angeles','CA','shirt',30,'red','2014-10-21','9908','Fisher LLC'); 478 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Phillips','Portland','OR','shirt',90,'blue','2015-04-28','9909','Prosacco LLC'); 479 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Rivera','New York City','NY','hat',100,'green','2014-02-21','9910','Morissette-Lang'); 480 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Howard','Ramirez','Greensboro','NC','hat',70,'red','2015-02-16','9911','Johns Group'); 481 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Willis','Hampton','VA','hat',70,'blue','2016-04-30','9912','Cummerata LLC'); 482 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anne','Porter','Fort Lauderdale','FL','shirt',10,'green','2015-09-13','9913','Smith, Mertz and Sawayn'); 483 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Cox','Young America','MN','hat',70,'red','2015-07-27','9914','Mitchell-Nolan'); 484 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cynthia','Powell','Odessa','TX','shirt',100,'blue','2016-11-05','9915','Jaskolski-Wiegand'); 485 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Willis','Denver','CO','shirt',80,'green','2014-12-02','9916','McKenzie LLC'); 486 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Price','San Francisco','CA','shirt',80,'red','2013-11-15','9917','Bartell-Armstrong'); 487 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Virginia','Howell','Alexandria','VA','hat',30,'blue','2015-10-08','9918','Deckow, Wilkinson and Stoltenberg'); 488 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','King','Philadelphia','PA','hat',30,'green','2014-01-20','9919','Auer Group'); 489 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Margaret','Hughes','Roanoke','VA','shirt',10,'red','2014-08-16','9920','Upton-Considine'); 490 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Robinson','San Francisco','CA','hat',90,'blue','2014-07-11','9921','Gerhold and Sons'); 491 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lois','Gordon','Kalamazoo','MI','hat',10,'green','2015-08-02','9922','Senger LLC'); 492 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Barbara','Hunt','El Paso','TX','shirt',90,'red','2015-04-17','9923',''); 493 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('George','Gonzalez','Naperville','IL','shirt',10,'blue','2014-12-18','9924','Heidenreich LLC'); 494 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cynthia','Alexander','Jersey City','NJ','hat',60,'green','2014-03-30','9925','Berge, Nicolas and Hahn'); 495 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Hughes','Brooksville','FL','shirt',80,'red','2016-09-21','9926',''); 496 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Hart','Indianapolis','IN','hat',70,'blue','2016-07-11','9927','Stroman, White and Bosco'); 497 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Murray','Omaha','NE','shirt',60,'green','2014-09-04','9928','Braun-Keebler'); 498 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Gibson','West Palm Beach','FL','shirt',30,'red','2015-11-06','9929','Bernhard-Lemke'); 499 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Campbell','Tucson','AZ','hat',80,'blue','2014-01-28','9930','Torphy LLC'); 500 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Bell','Richmond','VA','hat',30,'green','2016-10-15','9931','Blanda, Eichmann and Smitham'); 501 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louise','Fisher','Stamford','CT','hat',100,'red','2016-10-01','9932','Braun-Rodriguez'); 502 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('John','Sanders','Augusta','GA','shirt',80,'blue','2015-11-22','9933','Dickinson-Brakus'); 503 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Wells','New York City','NY','hat',90,'green','2016-01-20','9934','Friesen-Ferry'); 504 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phillip','Hansen','Dallas','TX','shirt',100,'red','2014-01-30','9935','Hahn-Runolfsdottir'); 505 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Olson','Troy','MI','hat',100,'blue','2015-04-20','9936','Ratke Group'); 506 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Butler','Wichita','KS','hat',70,'green','2015-03-31','9937','Hilpert and Sons'); 507 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Terry','Grant','San Jose','CA','hat',30,'red','2015-04-17','9938','Wiza, Rau and Hauck'); 508 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Elliott','Denver','CO','shirt',30,'blue','2015-07-07','9939',''); 509 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kelly','Burns','San Francisco','CA','hat',40,'green','2014-09-14','9940','Denesik-Balistreri'); 510 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Kim','Pasadena','CA','shirt',100,'red','2015-01-18','9941','Pagac-Harris'); 511 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Hayes','San Francisco','CA','hat',50,'blue','2015-06-06','9942','Breitenberg-Lesch'); 512 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','Lawson','San Francisco','CA','shirt',80,'green','2015-07-25','9943','Mohr and Sons'); 513 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Lewis','Youngstown','OH','shirt',90,'red','2015-09-26','9944','Paucek-Muller'); 514 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marie','Reynolds','El Paso','TX','shirt',80,'blue','2015-01-17','9945','Heidenreich-Stroman'); 515 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Porter','Charleston','WV','shirt',90,'green','2013-12-16','9946','Powlowski, Hilll and Kovacek'); 516 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Jackson','Arlington','TX','shirt',90,'red','2014-06-18','9947','Wunsch-Reynolds'); 517 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Jones','Littleton','CO','hat',90,'blue','2013-11-28','9948','Corkery-Johnston'); 518 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Samuel','Berry','Boston','MA','hat',100,'green','2016-01-20','9949','Boehm-Larkin'); 519 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Juan','Murphy','Evansville','IN','hat',70,'red','2014-05-28','9950','Bruen and Sons'); 520 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Chris','Castillo','Duluth','MN','shirt',100,'blue','2014-02-09','9951',''); 521 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Johnny','Jacobs','Springfield','IL','hat',20,'green','2016-04-15','9952','Klocko, Ernser and Carter'); 522 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Medina','Pittsburgh','PA','hat',80,'red','2015-11-15','9953','O''Kon, Schneider and Harber'); 523 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marie','Hawkins','Tulsa','OK','shirt',50,'blue','2013-12-05','9954','Hyatt, Rath and Torp'); 524 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joe','Owens','San Francisco','CA','shirt',40,'green','2015-09-28','9955','Rippin, Olson and Weimann'); 525 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Helen','Fuller','New York City','NY','shirt',70,'red','2014-12-31','9956','Hermiston-Corkery'); 526 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Fisher','Saint Paul','MN','shirt',40,'blue','2016-07-18','9957','Keeling and Sons'); 527 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathy','Gilbert','Las Vegas','NV','hat',80,'green','2016-11-06','9958','Predovic, Schultz and Predovic'); 528 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Diaz','Birmingham','AL','hat',60,'red','2013-12-16','9959','Corkery-Hoeger'); 529 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anthony','Palmer','Gainesville','GA','hat',80,'blue','2014-05-15','9960','Kihn-Dach'); 530 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judy','Armstrong','Shreveport','LA','shirt',90,'green','2016-06-06','9961','Tremblay-Fay'); 531 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Bailey','Virginia Beach','VA','hat',100,'red','2016-07-05','9962','Hamill-Parker'); 532 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Peterson','Jackson','MS','shirt',90,'blue','2016-10-10','9963','Lockman-Leffler'); 533 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Johnson','Syracuse','NY','hat',90,'green','2015-06-18','9964','Rau-Pouros'); 534 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Perkins','Rochester','NY','hat',80,'red','2015-12-02','9965','Collier-Kuhn'); 535 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bonnie','Gibson','Boston','MA','hat',90,'blue','2014-10-26','9966','Torphy, Sporer and Moore'); 536 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Evelyn','Austin','Albuquerque','NM','hat',50,'green','2015-01-31','9967','Keeling Group'); 537 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Moore','Cleveland','OH','hat',80,'red','2015-06-15','9968',''); 538 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Todd','Fields','San Diego','CA','shirt',80,'blue','2016-11-09','9969','Rodriguez-McGlynn'); 539 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Kennedy','Alexandria','VA','shirt',30,'green','2014-09-27','9970',''); 540 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Foster','Dallas','TX','hat',10,'red','2014-02-05','9971','Volkman-Block'); 541 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Jenkins','San Francisco','CA','shirt',70,'blue','2015-05-27','9972','Shields, Lind and Legros'); 542 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Terry','Peters','Manassas','VA','shirt',80,'green','2015-01-04','9973','Mann-Turner'); 543 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Hayes','Raleigh','NC','shirt',50,'red','2016-01-24','9974','West-Hintz'); 544 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lori','Jones','Salt Lake City','UT','hat',70,'blue','2014-04-04','9975','Zboncak, Kuhn and Ebert'); 545 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louise','Howard','Oakland','CA','shirt',90,'green','2015-06-07','9976','Armstrong, Hoeger and Walker'); 546 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Mason','Seattle','WA','hat',90,'red','2014-04-24','9977','Gibson-Grant'); 547 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julie','Mason','Reston','VA','hat',70,'blue','2014-02-20','9978','Russel, Weimann and Sawayn'); 548 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Peters','Port Charlotte','FL','hat',90,'green','2014-01-26','9979',''); 549 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ryan','Holmes','San Francisco','CA','hat',100,'red','2015-02-07','9980','Kuhn-Emard'); 550 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sara','Morales','Pensacola','FL','shirt',70,'blue','2014-09-28','9981','Brekke-Waelchi'); 551 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Grant','Louisville','KY','hat',80,'green','2016-05-15','9982','Brakus-Reichert'); 552 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Mendoza','Mobile','AL','shirt',80,'red','2014-06-06','9983','Sauer-Pouros'); 553 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Fred','Walker','Baltimore','MD','shirt',70,'blue','2015-08-29','9984','Satterfield Group'); 554 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Brown','Van Nuys','CA','hat',90,'green','2013-11-17','9985','Kemmer LLC'); 555 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Crawford','Huntington Beach','CA','hat',80,'red','2014-02-11','9986','Botsford, Kirlin and Brekke'); 556 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Murphy','New Hyde Park','NY','hat',20,'blue','2014-12-03','9987','Kunze, Bauch and Ebert'); 557 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Laura','Lopez','Huntington','WV','shirt',80,'green','2016-08-17','9988','Legros Group'); 558 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Olson','Reno','NV','hat',100,'red','2014-01-09','9989','Schmitt, Goodwin and Wilderman'); 559 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Matthews','Fort Wayne','IN','hat',90,'blue','2014-12-10','9990','Torphy-Johnston'); 560 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Ford','Seattle','WA','shirt',90,'green','2015-06-23','9991','Steuber and Sons'); 561 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julia','Hawkins','Grand Rapids','MI','shirt',90,'red','2015-11-26','9992','Skiles, Predovic and Conroy'); 562 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Romero','Fort Myers','FL','shirt',80,'blue','2015-11-14','9993','Von-Walter'); 563 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Flores','Cincinnati','OH','hat',70,'green','2015-01-24','9994','Green Group'); 564 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ernest','Fowler','Concord','CA','hat',50,'red','2015-04-17','9995',''); 565 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Chapman','Helena','MT','hat',10,'blue','2014-02-03','9996','O''Conner Inc'); 566 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patricia','Ryan','Dayton','OH','hat',60,'green','2015-12-25','9997','Hoppe Group'); 567 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jose','Butler','Norwalk','CT','hat',70,'red','2016-01-17','9998','Bahringer Inc'); 568 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Daniels','Irving','TX','hat',80,'blue','2015-07-05','9999','Schaden-Christiansen'); 569 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Wallace','Boston','MA','hat',60,'green','2015-04-08','10000','Bayer-Brekke'); 570 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Jackson','Omaha','NE','hat',50,'red','2016-06-20','10001','Koch LLC'); 571 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phyllis','Hicks','Saint Louis','MO','hat',90,'blue','2016-01-28','10002','Pfeffer, Strosin and Dicki'); 572 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Rivera','Scranton','PA','shirt',100,'green','2016-09-09','10003','Gislason-Nikolaus'); 573 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Boyd','South Bend','IN','shirt',90,'red','2016-01-19','10004','Marks-Rath'); 574 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patricia','James','Gulfport','MS','shirt',80,'blue','2015-01-31','10005','Schuppe, Hauck and Lindgren'); 575 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','James','Albany','NY','shirt',100,'green','2016-05-25','10006','Kreiger-Dickinson'); 576 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Black','Philadelphia','PA','hat',100,'red','2014-08-10','10007','Homenick-Purdy'); 577 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Hill','Trenton','NJ','hat',100,'blue','2014-06-05','10008','Schaden, Schaefer and Wiza'); 578 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Harrison','Pueblo','CO','shirt',10,'green','2016-11-02','10009','Dickinson and Sons'); 579 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Mason','Tulsa','OK','hat',70,'red','2014-04-02','10010','D''Amore, Franecki and Hintz'); 580 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Gordon','Richmond','CA','shirt',70,'blue','2015-11-12','10011','Beier-Wintheiser'); 581 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Martinez','Concord','CA','hat',70,'green','2014-02-24','10012','Roberts and Sons'); 582 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Elliott','Fullerton','CA','shirt',90,'red','2014-12-03','10013','Doyle-Murazik'); 583 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Welch','Tuscaloosa','AL','hat',60,'blue','2016-08-15','10014','O''Keefe and Sons'); 584 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Bowman','Tampa','FL','hat',80,'green','2016-09-27','10015','Ortiz, Rippin and Hudson'); 585 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Perkins','Champaign','IL','shirt',100,'red','2015-05-26','10016','Waelchi LLC'); 586 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Hunter','Boynton Beach','FL','hat',50,'blue','2013-11-21','10017','Hilpert LLC'); 587 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Justin','Olson','Panama City','FL','hat',90,'green','2014-08-17','10018','Mann Inc'); 588 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joan','Young','Nashville','TN','shirt',70,'red','2014-12-05','10019',''); 589 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Terry','Stanley','Ocala','FL','shirt',100,'blue','2015-07-21','10020','Ferry, Bartoletti and Prohaska'); 590 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alice','Bennett','Palm Bay','FL','hat',50,'green','2015-11-07','10021','Reichel, Miller and Effertz'); 591 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Kelly','Cleveland','OH','hat',100,'red','2014-01-03','10022','Stokes-Schultz'); 592 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Daniels','Dallas','TX','hat',70,'blue','2016-01-12','10023','Kuhic, VonRueden and Kohler'); 593 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Matthews','Philadelphia','PA','hat',20,'green','2016-08-12','10024','Toy and Sons'); 594 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Shaw','El Paso','TX','shirt',60,'red','2014-06-19','10025','Hermann, Nitzsche and Mueller'); 595 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Gutierrez','Fort Myers','FL','shirt',90,'blue','2015-09-19','10026',''); 596 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phillip','Crawford','Dallas','TX','hat',70,'green','2013-12-31','10027','Balistreri and Sons'); 597 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sarah','Ryan','Louisville','KY','shirt',50,'red','2014-03-25','10028','Keebler, Huels and Heaney'); 598 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Harvey','Charlotte','NC','hat',90,'blue','2014-01-15','10029','Hayes, Blick and Brekke'); 599 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mary','Gray','Syracuse','NY','hat',80,'green','2015-10-15','10030','Orn Inc'); 600 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Martinez','Stamford','CT','hat',80,'red','2013-11-24','10031','Sipes Group'); 601 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Johnston','Pasadena','CA','hat',20,'blue','2015-05-20','10032',''); 602 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Gutierrez','San Jose','CA','shirt',30,'green','2016-10-02','10033','Stehr LLC'); 603 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Margaret','Arnold','Denver','CO','shirt',60,'red','2015-07-07','10034','Gulgowski, Marks and Johnson'); 604 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Kelly','Savannah','GA','hat',80,'blue','2015-04-29','10035','Blanda-Wilkinson'); 605 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Hicks','Dallas','TX','hat',90,'green','2016-05-04','10036','Rice Inc'); 606 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judy','Black','Hollywood','FL','hat',90,'red','2014-05-21','10037','Mertz-Auer'); 607 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Hart','Birmingham','AL','hat',10,'blue','2014-09-08','10038','Predovic-Osinski'); 608 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Justin','Snyder','San Francisco','CA','shirt',80,'green','2016-02-23','10039','Littel-Wilderman'); 609 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Virginia','Harvey','Paterson','NJ','hat',90,'red','2015-01-08','10040','Schuppe, Lang and Harvey'); 610 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paula','Williamson','Houston','TX','shirt',90,'blue','2014-12-05','10041','Wyman, Tremblay and Mertz'); 611 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harry','Welch','Rochester','MN','hat',90,'green','2014-03-03','10042','Wehner Group'); 612 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Norma','Robertson','Stockton','CA','shirt',100,'red','2015-05-01','10043','Mante, Powlowski and Ryan'); 613 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steven','Fox','Buffalo','NY','hat',60,'blue','2015-10-12','10044','Turcotte, Hegmann and Auer'); 614 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeffrey','Martinez','Tampa','FL','shirt',70,'green','2015-11-19','10045','Kilback Inc'); 615 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alan','Wagner','Spartanburg','SC','shirt',50,'red','2014-11-18','10046','Fritsch, Powlowski and Smith'); 616 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Ellis','Kansas City','MO','shirt',70,'blue','2015-08-02','10047',''); 617 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Torres','Huntsville','AL','hat',100,'green','2014-04-03','10048','Gaylord, Corwin and Gottlieb'); 618 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ralph','Fisher','Brooklyn','NY','shirt',50,'red','2016-07-27','10049','Wilderman, Ullrich and Collier'); 619 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anne','Franklin','Roanoke','VA','shirt',10,'blue','2016-06-26','10050','Nienow and Sons'); 620 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joe','Ellis','Memphis','TN','hat',70,'green','2015-06-25','10051','Feeney, Koepp and McKenzie'); 621 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeremy','Martin','New York City','NY','hat',100,'red','2015-02-13','10052',''); 622 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sandra','Ferguson','Boca Raton','FL','hat',20,'blue','2016-01-08','10053',''); 623 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Hansen','Corpus Christi','TX','hat',60,'green','2014-10-13','10054','Haley-Luettgen'); 624 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Benjamin','Thompson','Elmira','NY','shirt',100,'red','2016-07-27','10055','Kuphal, Pouros and Weimann'); 625 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lisa','Riley','Rochester','NY','hat',30,'blue','2015-05-31','10056','Breitenberg-Russel'); 626 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Susan','Pierce','Pensacola','FL','hat',90,'green','2016-01-12','10057',''); 627 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Victor','Owens','Chicago','IL','shirt',80,'red','2016-05-03','10058','Lemke-Christiansen'); 628 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Graham','New Orleans','LA','hat',70,'blue','2016-03-20','10059','Reynolds LLC'); 629 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shawn','Spencer','Dayton','OH','shirt',100,'green','2013-12-30','10060',''); 630 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steven','Foster','Pensacola','FL','hat',30,'red','2015-01-06','10061','Rodriguez, Gorczany and Hickle'); 631 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Daniel','Woods','Glendale','CA','shirt',70,'blue','2016-06-27','10062','Weber Inc'); 632 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Flores','Lincoln','NE','hat',50,'green','2016-01-04','10063','Harris and Sons'); 633 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Fred','Williamson','Louisville','KY','hat',100,'red','2016-10-09','10064','Friesen-Heathcote'); 634 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Heather','Foster','Youngstown','OH','hat',70,'blue','2016-05-31','10065','Greenholt-Gulgowski'); 635 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Arthur','Carroll','Birmingham','AL','hat',60,'green','2013-11-22','10066','O''Conner and Sons'); 636 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','Cook','Las Vegas','NV','hat',80,'red','2016-01-14','10067','Graham-Bednar'); 637 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jane','Simmons','Richmond','VA','shirt',100,'blue','2015-06-23','10068','Barrows, Jenkins and Roberts'); 638 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martin','Richardson','Minneapolis','MN','hat',90,'green','2014-12-12','10069','Ortiz, Lubowitz and Brekke'); 639 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','Ross','Stockton','CA','hat',50,'red','2014-12-06','10070','Schaden, Grant and Hoeger'); 640 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Theresa','Fox','Sacramento','CA','hat',80,'blue','2015-05-12','10071','Zieme Group'); 641 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Perez','Long Beach','CA','hat',30,'green','2016-01-29','10072','Crooks, Roberts and Beahan'); 642 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Wagner','Santa Barbara','CA','shirt',80,'red','2014-06-03','10073','Wilkinson-O''Keefe'); 643 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathy','Ellis','Simi Valley','CA','hat',80,'blue','2014-03-28','10074','Treutel Inc'); 644 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cynthia','Carroll','Monticello','MN','hat',30,'green','2015-06-24','10075','Stracke and Sons'); 645 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','Wallace','Raleigh','NC','hat',50,'red','2016-03-01','10076','Towne, Mueller and Gusikowski'); 646 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Diana','Torres','Denver','CO','hat',90,'blue','2014-07-29','10077','Rowe, Fay and Bosco'); 647 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Craig','Payne','Phoenix','AZ','hat',80,'green','2016-07-19','10078','MacGyver LLC'); 648 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Olson','Littleton','CO','hat',90,'red','2014-11-04','10079','Fahey, Goodwin and Borer'); 649 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Marshall','Little Rock','AR','hat',90,'blue','2014-11-14','10080','Dach Group'); 650 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Green','Los Angeles','CA','hat',90,'green','2014-12-27','10081','Lehner-Lubowitz'); 651 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shawn','Ryan','Tucson','AZ','hat',90,'red','2015-03-10','10082','Larson LLC'); 652 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Garcia','West Hartford','CT','shirt',10,'blue','2016-09-18','10083','Hansen Inc'); 653 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Mcdonald','Indianapolis','IN','hat',70,'green','2016-02-04','10084','Carter LLC'); 654 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Evelyn','Peters','Lima','OH','shirt',80,'red','2016-06-20','10085','Kshlerin Group'); 655 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Andrews','New Brunswick','NJ','shirt',90,'blue','2015-10-13','10086','Kautzer Group'); 656 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Morgan','Denver','CO','hat',90,'green','2015-05-16','10087','Little, Kunze and Emard'); 657 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jack','Butler','Maple Plain','MN','hat',80,'red','2016-03-14','10088','Keeling, Kozey and Casper'); 658 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lois','Hart','Kansas City','KS','shirt',90,'blue','2015-07-30','10089','Bartell-D''Amore'); 659 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Watkins','Hagerstown','MD','shirt',70,'green','2015-07-02','10090','Renner-Kub'); 660 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ernest','Peters','Shawnee Mission','KS','hat',40,'red','2016-05-28','10091','Beer, Wolf and Cruickshank'); 661 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Patterson','Cleveland','OH','shirt',90,'blue','2014-04-11','10092','Turcotte, Blanda and Wyman'); 662 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Benjamin','Hernandez','Garden Grove','CA','hat',80,'green','2014-10-29','10093','Wintheiser and Sons'); 663 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Hansen','Springfield','MO','shirt',50,'red','2016-01-25','10094','Gutmann-Berge'); 664 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Katherine','Perkins','Atlanta','GA','hat',100,'blue','2015-09-12','10095','Feil-Deckow'); 665 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sara','Lawson','Trenton','NJ','shirt',90,'green','2016-07-30','10096','Crona LLC'); 666 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Raymond','Stephens','Modesto','CA','shirt',70,'red','2015-08-13','10097','Dare-Muller'); 667 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wanda','Perez','Las Vegas','NV','shirt',100,'blue','2014-10-05','10098','Kerluke, Shields and Klocko'); 668 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Bennett','Hicksville','NY','shirt',80,'green','2014-07-08','10099','Keebler, Schaden and Bogan'); 669 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Russell','Naples','FL','hat',20,'red','2015-07-07','10100','Haag Inc'); 670 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Walker','Bethesda','MD','hat',80,'blue','2016-05-18','10101','Hudson, Halvorson and Brakus'); 671 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Lane','Odessa','TX','hat',100,'green','2014-04-22','10102','Lindgren-Schowalter'); 672 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruby','Mendoza','Beaumont','TX','hat',100,'red','2015-07-31','10103','Ernser-Bauch'); 673 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Rivera','San Diego','CA','hat',50,'blue','2015-05-18','10104','Lehner-Jenkins'); 674 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Mills','Oklahoma City','OK','shirt',30,'green','2015-11-08','10105',''); 675 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anthony','Morris','Cincinnati','OH','hat',90,'red','2016-02-21','10106','Bernier Group'); 676 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Gibson','Sacramento','CA','shirt',80,'blue','2014-02-28','10107','Glover, Batz and Williamson'); 677 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Roberts','Long Beach','CA','hat',60,'green','2015-05-29','10108','Vandervort, Paucek and Sipes'); 678 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kelly','Lewis','Atlanta','GA','hat',10,'red','2016-04-02','10109','Greenfelder, Denesik and Rolfson'); 679 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ralph','Medina','Montgomery','AL','shirt',30,'blue','2015-12-18','10110','Price and Sons'); 680 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathy','West','Corpus Christi','TX','hat',80,'green','2016-10-20','10111','Dietrich-Tillman'); 681 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eric','Morgan','Charlotte','NC','hat',90,'red','2015-12-25','10112','Lebsack-Kihn'); 682 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Wagner','Columbia','MO','shirt',20,'blue','2016-03-07','10113',''); 683 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alice','Brown','El Paso','TX','hat',60,'green','2015-03-15','10114','Beatty, Feeney and Howe'); 684 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Lopez','Alexandria','VA','shirt',10,'red','2016-10-23','10115','Hyatt, Streich and Ortiz'); 685 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kenneth','Campbell','Louisville','KY','shirt',70,'blue','2015-09-11','10116','Gutmann, Barrows and Price'); 686 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Philip','Crawford','South Bend','IN','shirt',40,'green','2015-11-19','10117','Goldner-Stokes'); 687 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Foster','Huntsville','AL','hat',20,'red','2014-01-16','10118','Schaefer-Cummings'); 688 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Montgomery','Saint Paul','MN','shirt',50,'blue','2016-09-09','10119','Steuber-Gottlieb'); 689 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sara','Wallace','High Point','NC','hat',50,'green','2014-10-20','10120','Mayer-Auer'); 690 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Reynolds','Houston','TX','hat',20,'red','2014-11-15','10121','Reilly, Ledner and Labadie'); 691 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Martin','Silver Spring','MD','shirt',80,'blue','2014-12-03','10122','Schowalter LLC'); 692 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Taylor','Tulsa','OK','hat',90,'green','2015-09-27','10123','Schmidt and Sons'); 693 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Grant','New Orleans','LA','shirt',20,'red','2015-03-02','10124','Fay, Schinner and Herman'); 694 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Green','Shawnee Mission','KS','hat',90,'blue','2014-07-26','10125','Hintz-Tillman'); 695 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Stephens','Houston','TX','shirt',100,'green','2015-10-07','10126','Pacocha-Donnelly'); 696 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Helen','Reyes','Norfolk','VA','hat',90,'red','2016-02-21','10127','Terry Inc'); 697 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Stanley','College Station','TX','hat',90,'blue','2015-11-17','10128','Paucek, Bernier and Leuschke'); 698 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shawn','Hayes','Corpus Christi','TX','shirt',60,'green','2014-01-07','10129','Dach-Koepp'); 699 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kathleen','Watson','Baton Rouge','LA','shirt',40,'red','2013-12-25','10130','Wilderman-Ebert'); 700 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Holmes','Birmingham','AL','hat',100,'blue','2016-03-24','10131','Satterfield, Keebler and Kihn'); 701 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Sullivan','Jacksonville','FL','shirt',80,'green','2014-01-28','10132','Pollich-Gutmann'); 702 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kenneth','Fisher','Columbia','SC','hat',80,'red','2014-07-11','10133','West-Dibbert'); 703 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Chavez','Missoula','MT','hat',100,'blue','2015-11-04','10134','Dicki, Spencer and Hamill'); 704 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Knight','Orlando','FL','hat',100,'green','2014-03-11','10135','Jerde-Ondricka'); 705 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruby','Kelley','Raleigh','NC','hat',30,'red','2016-04-03','10136','Langworth-Ledner'); 706 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jane','Powell','Terre Haute','IN','hat',90,'blue','2016-01-17','10137','Brekke Group'); 707 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Ruiz','Omaha','NE','hat',50,'green','2016-03-03','10138','Cormier and Sons'); 708 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Benjamin','Duncan','Hollywood','FL','hat',50,'red','2014-04-19','10139','Bailey and Sons'); 709 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harold','Gonzales','Phoenix','AZ','shirt',90,'blue','2014-08-29','10140','Cassin, Flatley and Wintheiser'); 710 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Alvarez','Concord','CA','shirt',20,'green','2014-06-09','10141','Schiller LLC'); 711 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Bennett','Raleigh','NC','shirt',80,'red','2014-01-01','10142','Hudson and Sons'); 712 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Burns','Phoenix','AZ','hat',80,'blue','2016-10-18','10143','Kessler-Lakin'); 713 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Murray','Decatur','GA','shirt',60,'green','2015-04-20','10144','Mante, Hessel and Ziemann'); 714 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Arthur','Dunn','Indianapolis','IN','hat',70,'red','2015-07-18','10145','Ledner, Kuvalis and Bogan'); 715 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jose','Hunt','Phoenix','AZ','hat',90,'blue','2014-06-29','10146','Zemlak-Halvorson'); 716 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Ramirez','Buffalo','NY','hat',100,'green','2015-08-19','10147','Russel LLC'); 717 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brenda','Green','Birmingham','AL','shirt',100,'red','2016-04-20','10148','Hilll Inc'); 718 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janet','Carroll','Honolulu','HI','shirt',60,'blue','2014-01-17','10149','Rosenbaum-Gottlieb'); 719 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Susan','Greene','Alexandria','VA','hat',80,'green','2014-06-08','10150','West, Volkman and Kerluke'); 720 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sean','Webb','Los Angeles','CA','hat',70,'red','2013-11-17','10151','Stark LLC'); 721 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Ryan','Pinellas Park','FL','shirt',100,'blue','2014-01-29','10152','Schumm Group'); 722 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lillian','Cunningham','Baton Rouge','LA','hat',70,'green','2016-07-20','10153','Considine Group'); 723 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','Knight','Phoenix','AZ','shirt',10,'red','2014-04-27','10154','McGlynn, Hudson and Rodriguez'); 724 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bobby','Stewart','Dayton','OH','hat',70,'blue','2016-04-28','10155',''); 725 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Matthew','Franklin','Hartford','CT','hat',30,'green','2016-10-11','10156','Kovacek-Schumm'); 726 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrea','Carpenter','Silver Spring','MD','shirt',80,'red','2014-10-25','10157',''); 727 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Peterson','Lexington','KY','shirt',100,'blue','2014-03-21','10158','Ebert-Crooks'); 728 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Peters','Springfield','IL','hat',100,'green','2014-06-12','10159','DuBuque Inc'); 729 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roger','Hill','Toledo','OH','shirt',80,'red','2013-11-18','10160','Kozey, Heidenreich and Schmidt'); 730 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Edwards','Austin','TX','shirt',90,'blue','2014-04-11','10161','Kilback-Hintz'); 731 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Hunt','Portland','OR','shirt',90,'green','2014-11-06','10162','Swift Inc'); 732 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Frazier','Huntington','WV','hat',80,'red','2014-04-20','10163','Heller, Balistreri and Mraz'); 733 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Harrison','Atlanta','GA','shirt',80,'blue','2015-01-16','10164','Gislason-Mueller'); 734 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Perry','Saint Louis','MO','hat',90,'green','2016-09-12','10165','Willms Group'); 735 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sarah','Johnston','Miami','FL','hat',90,'red','2014-08-26','10166','Dickinson Group'); 736 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joshua','Green','Orlando','FL','shirt',90,'blue','2013-12-13','10167','Jacobson, Herman and Zboncak'); 737 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patrick','Barnes','Redwood City','CA','shirt',40,'green','2015-08-01','10168','Russel-Bartoletti'); 738 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Aaron','Alexander','Philadelphia','PA','shirt',20,'red','2015-06-25','10169','Ferry, Keeling and Langworth'); 739 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Carroll','Bethesda','MD','hat',80,'blue','2015-07-25','10170','Oberbrunner-Dicki'); 740 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Williamson','Cincinnati','OH','hat',90,'green','2014-12-25','10171','Hessel and Sons'); 741 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julia','Williams','Salt Lake City','UT','hat',80,'red','2016-10-04','10172','Crist, Wyman and Johnston'); 742 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Norma','Willis','Gainesville','FL','hat',90,'blue','2014-07-11','10173','Thompson-Rosenbaum'); 743 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Daniel','Hunt','Pueblo','CO','hat',90,'green','2016-09-21','10174','O''Conner-Schinner'); 744 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','Richardson','Ocala','FL','hat',100,'red','2016-07-29','10175','Prosacco LLC'); 745 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Crawford','Richmond','VA','hat',80,'blue','2016-11-03','10176','Pacocha-Kilback'); 746 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','Fuller','Denver','CO','shirt',80,'green','2015-02-16','10177','Ward-Effertz'); 747 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Carpenter','Buffalo','NY','hat',80,'red','2016-07-25','10178','Gulgowski-Bartoletti'); 748 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicholas','Peters','West Palm Beach','FL','hat',100,'blue','2014-12-21','10179','Pagac-Cartwright'); 749 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Henderson','Minneapolis','MN','hat',70,'green','2014-08-03','10180',''); 750 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Linda','Hanson','Indianapolis','IN','shirt',80,'red','2014-01-20','10181','Turner-Bruen'); 751 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wanda','Hernandez','Scranton','PA','shirt',90,'blue','2016-04-21','10182','Altenwerth, Zboncak and Marks'); 752 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Collins','San Antonio','TX','hat',70,'green','2015-12-08','10183','Daniel, Wilkinson and Schmitt'); 753 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Perkins','Kansas City','MO','shirt',70,'red','2015-06-02','10184','Miller-Kirlin'); 754 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Justin','Dean','Tacoma','WA','hat',10,'blue','2015-04-20','10185','Huel-Lebsack'); 755 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kimberly','Payne','Springfield','MO','hat',70,'green','2014-04-05','10186','Kris LLC'); 756 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Hicks','Bakersfield','CA','hat',10,'red','2014-02-04','10187','Parker, Block and Hyatt'); 757 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeremy','Cunningham','Portland','OR','shirt',80,'blue','2015-05-20','10188','Sawayn and Sons'); 758 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Warren','Alexandria','VA','hat',100,'green','2016-08-04','10189','Bauch Inc'); 759 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Arnold','Memphis','TN','shirt',50,'red','2015-06-30','10190',''); 760 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Lopez','Charlotte','NC','hat',40,'blue','2015-10-10','10191','Kilback-Frami'); 761 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ernest','Woods','Dallas','TX','hat',80,'green','2014-07-15','10192','Mann, Crist and Ziemann'); 762 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','Jenkins','Boston','MA','hat',100,'red','2016-05-06','10193','Medhurst and Sons'); 763 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Little','Fresno','CA','shirt',30,'blue','2014-06-18','10194','Simonis Inc'); 764 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kenneth','Gomez','Van Nuys','CA','shirt',90,'green','2016-06-20','10195',''); 765 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Helen','Stanley','Van Nuys','CA','shirt',100,'red','2016-07-01','10196','Swaniawski, Weber and Rolfson'); 766 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Gonzales','Iowa City','IA','shirt',100,'blue','2016-02-07','10197','Renner LLC'); 767 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','Lawson','San Antonio','TX','shirt',70,'green','2013-12-31','10198','Veum LLC'); 768 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Cunningham','Wichita Falls','TX','hat',100,'red','2014-06-25','10199','Zieme, Botsford and Kemmer'); 769 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Evelyn','Oliver','Lima','OH','shirt',50,'blue','2016-06-03','10200','Grady-Harber'); 770 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Johnny','Wells','Detroit','MI','shirt',100,'green','2014-11-22','10201','Eichmann, Effertz and Ledner'); 771 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harold','Collins','Boston','MA','hat',30,'red','2015-06-30','10202','Dare-Huel'); 772 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Baker','Boca Raton','FL','hat',100,'blue','2015-01-22','10203','Von-Bashirian'); 773 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','Knight','Augusta','GA','hat',60,'green','2015-03-23','10204','Collier LLC'); 774 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Pierce','Chesapeake','VA','hat',40,'red','2016-03-03','10205','Hoeger Inc'); 775 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Chris','Jacobs','Oklahoma City','OK','hat',80,'blue','2015-04-21','10206','Jones-Zboncak'); 776 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Hanson','Richmond','VA','hat',80,'green','2015-01-27','10207','Rempel-Rutherford'); 777 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Sanchez','San Francisco','CA','hat',100,'red','2014-01-30','10208','Koch-Hudson'); 778 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jose','Carroll','Daytona Beach','FL','hat',80,'blue','2014-05-17','10209','Bergnaum, Bauch and Hickle'); 779 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Hughes','West Palm Beach','FL','shirt',80,'green','2016-04-10','10210','Leffler and Sons'); 780 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Hicks','Fort Worth','TX','shirt',100,'red','2014-01-27','10211','Bins Group'); 781 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','Ford','Saint Louis','MO','hat',70,'blue','2015-11-07','10212','Bogan Group'); 782 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Stone','Indianapolis','IN','shirt',100,'green','2015-12-18','10213','Wuckert-Wilderman'); 783 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sharon','Oliver','Oklahoma City','OK','shirt',80,'red','2015-03-31','10214',''); 784 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','West','Decatur','GA','shirt',100,'blue','2016-08-03','10215',''); 785 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Wheeler','Humble','TX','hat',10,'green','2014-04-01','10216','Gerlach, Tillman and Mosciski'); 786 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Moore','Nashville','TN','shirt',90,'red','2014-10-09','10217','Kuhlman, Leannon and Harber'); 787 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Carr','Tampa','FL','shirt',40,'blue','2015-02-24','10218','Hudson, Bogan and Gaylord'); 788 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruby','Richards','Buffalo','NY','hat',100,'green','2014-12-09','10219',''); 789 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Barbara','Bryant','San Diego','CA','hat',90,'red','2014-10-01','10220','Jerde Inc'); 790 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dennis','Hicks','Springfield','VA','hat',70,'blue','2014-09-29','10221','Dach, Schuster and Rodriguez'); 791 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tammy','Wagner','Fresno','CA','hat',90,'green','2015-10-20','10222',''); 792 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julia','Carroll','El Paso','TX','hat',80,'red','2014-06-07','10223','Prohaska Group'); 793 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Reed','Brooklyn','NY','shirt',100,'blue','2016-08-28','10224','Johnston-Murray'); 794 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mark','Holmes','Lancaster','PA','shirt',50,'green','2016-09-22','10225','Franecki Inc'); 795 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Simmons','Spokane','WA','hat',100,'red','2015-03-27','10226','Simonis Inc'); 796 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tina','Fox','Fayetteville','NC','hat',100,'blue','2014-11-22','10227','Crist-Cartwright'); 797 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Mitchell','Dayton','OH','shirt',80,'green','2015-01-03','10228','Fadel-Wiegand'); 798 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Betty','Welch','Aurora','CO','shirt',70,'red','2014-04-20','10229','Zemlak-McDermott'); 799 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','West','San Francisco','CA','shirt',70,'blue','2015-11-23','10230','Rice, Crist and Kulas'); 800 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Jones','Houston','TX','hat',90,'green','2016-02-14','10231',''); 801 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mary','Myers','Boise','ID','hat',70,'red','2014-09-06','10232','Towne, Spencer and Mante'); 802 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Lynch','Cincinnati','OH','shirt',100,'blue','2015-05-07','10233','Crona-MacGyver'); 803 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Riley','Baltimore','MD','shirt',30,'green','2015-12-08','10234','Macejkovic, Marks and Stamm'); 804 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Griffin','Evansville','IN','hat',70,'red','2014-01-20','10235','Olson, Dicki and Rogahn'); 805 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Clarence','Olson','Denver','CO','hat',90,'blue','2014-05-21','10236','Monahan, Walker and Bechtelar'); 806 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruby','Daniels','Minneapolis','MN','shirt',90,'green','2014-07-13','10237','Wyman-Toy'); 807 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janice','Bailey','Trenton','NJ','shirt',10,'red','2016-08-21','10238','Auer-Donnelly'); 808 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Rivera','Atlanta','GA','shirt',80,'blue','2016-05-26','10239','Hills-Maggio'); 809 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alan','Butler','Philadelphia','PA','shirt',80,'green','2014-02-10','10240','Kulas LLC'); 810 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Barbara','Howard','Sacramento','CA','shirt',90,'red','2014-06-14','10241','Collier and Sons'); 811 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Reyes','Louisville','KY','shirt',90,'blue','2015-04-11','10242','Johns, Johns and Schimmel'); 812 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Debra','Garrett','Panama City','FL','shirt',50,'green','2016-04-22','10243','Rosenbaum LLC'); 813 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruby','Burton','San Francisco','CA','hat',30,'red','2014-10-07','10244','Kris, Hackett and Murray'); 814 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gerald','Harrison','Biloxi','MS','hat',20,'blue','2014-02-15','10245','Kling, Crist and Eichmann'); 815 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Carr','Fort Pierce','FL','hat',20,'green','2016-02-17','10246','Ankunding-Cormier'); 816 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Payne','Young America','MN','shirt',70,'red','2013-12-31','10247','Bins and Sons'); 817 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Rice','Irvine','CA','hat',50,'blue','2015-03-14','10248','Heidenreich, Renner and Schulist'); 818 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Marshall','Spokane','WA','hat',40,'green','2015-01-02','10249','Runolfsson LLC'); 819 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Armstrong','Portland','OR','hat',10,'red','2014-09-06','10250','Torp-Leuschke'); 820 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Juan','Walker','El Paso','TX','hat',70,'blue','2015-04-02','10251','Kertzmann-Bayer'); 821 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wanda','Alexander','Portland','OR','hat',90,'green','2015-03-03','10252','Gorczany-Bogisich'); 822 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sharon','Roberts','San Antonio','TX','hat',90,'red','2015-12-04','10253','Dicki-Kub'); 823 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','Mills','Alexandria','VA','shirt',90,'blue','2014-10-03','10254','Ankunding and Sons'); 824 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Flores','Boca Raton','FL','hat',40,'green','2014-02-20','10255','Wintheiser, Abernathy and Ankunding'); 825 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Washington','Olympia','WA','shirt',80,'red','2014-07-11','10256','Pfeffer-Cole'); 826 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Morgan','San Francisco','CA','hat',100,'blue','2014-09-08','10257','Hermann, Keeling and Ernser'); 827 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louise','Stewart','Evansville','IN','shirt',30,'green','2014-05-20','10258','Toy and Sons'); 828 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Jenkins','Omaha','NE','shirt',50,'red','2016-04-08','10259','Maggio-Reynolds'); 829 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Fisher','Saint Louis','MO','hat',10,'blue','2015-09-23','10260','Reinger, O''Hara and Kihn'); 830 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judy','Andrews','Winston Salem','NC','shirt',90,'green','2016-05-14','10261','Padberg, MacGyver and Kohler'); 831 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Thomas','Jacksonville','FL','shirt',70,'red','2016-03-23','10262','Hettinger Inc'); 832 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('George','Nguyen','Saint Louis','MO','hat',10,'blue','2014-09-08','10263','Hane-Schoen'); 833 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judith','Barnes','Bronx','NY','hat',70,'green','2013-11-28','10264','King, Kuhlman and Klein'); 834 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Nelson','Kansas City','MO','shirt',100,'red','2014-12-09','10265','Mante, Lakin and Beatty'); 835 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Day','Phoenix','AZ','hat',10,'blue','2015-08-23','10266','Schowalter and Sons'); 836 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Evans','Memphis','TN','hat',90,'green','2015-08-29','10267','Kerluke, Anderson and Reynolds'); 837 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michelle','Hawkins','Phoenix','AZ','hat',90,'red','2016-01-03','10268','Emard, Gulgowski and Wolf'); 838 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Benjamin','Sims','Durham','NC','shirt',40,'blue','2015-09-11','10269','Harvey LLC'); 839 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Craig','Ortiz','Grand Forks','ND','shirt',90,'green','2013-11-27','10270','Dietrich LLC'); 840 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Moreno','New York City','NY','hat',70,'red','2015-12-12','10271','Ernser-Lynch'); 841 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kenneth','Gilbert','Anderson','IN','hat',20,'blue','2015-07-05','10272','Boyle-Marks'); 842 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janice','Bryant','Hartford','CT','shirt',100,'green','2013-12-11','10273',''); 843 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sean','Reed','Santa Rosa','CA','shirt',80,'red','2016-03-30','10274','Huel-Littel'); 844 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeremy','Tucker','Las Vegas','NV','hat',80,'blue','2016-02-28','10275','Lynch-Reichert'); 845 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Keith','Pierce','Fresno','CA','hat',90,'green','2015-06-25','10276',''); 846 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roger','Tucker','New York City','NY','hat',80,'red','2014-07-06','10277','Thompson, Lubowitz and Leuschke'); 847 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Sean','Gibson','Philadelphia','PA','shirt',40,'blue','2016-09-17','10278','Borer, Cummings and Wunsch'); 848 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shirley','Ramirez','Saint Louis','MO','hat',50,'green','2015-09-03','10279','Kunze-Gutmann'); 849 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Janet','Reynolds','New York City','NY','hat',90,'red','2015-01-14','10280','Stamm, Volkman and Wilderman'); 850 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joyce','Wells','Rockford','IL','shirt',100,'blue','2016-07-31','10281','Kilback, Parker and Reichel'); 851 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ralph','Morales','Toledo','OH','shirt',100,'green','2016-09-27','10282','Schimmel, Donnelly and Halvorson'); 852 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julia','Lee','Knoxville','TN','hat',50,'red','2014-12-03','10283','Cartwright Inc'); 853 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Shawn','Jordan','Houston','TX','shirt',100,'blue','2015-06-23','10284',''); 854 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','Patterson','Charlottesville','VA','hat',40,'green','2015-07-02','10285','Thiel, Kirlin and Morissette'); 855 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eugene','Martinez','Dayton','OH','hat',90,'red','2014-08-03','10286','Jast-Lesch'); 856 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phillip','James','Tallahassee','FL','shirt',90,'blue','2015-07-28','10287','Kiehn-Muller'); 857 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anne','Romero','Reading','PA','hat',50,'green','2013-11-19','10288','Kuhic-Ratke'); 858 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Pamela','Payne','South Bend','IN','hat',80,'red','2016-01-07','10289','Swift, Lang and Stoltenberg'); 859 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Green','Atlanta','GA','hat',60,'blue','2015-09-21','10290','Jenkins, Senger and Gulgowski'); 860 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patricia','Cooper','Orlando','FL','shirt',90,'green','2014-01-14','10291','Dickens, Anderson and Boyle'); 861 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Brown','Young America','MN','shirt',20,'red','2016-07-25','10292',''); 862 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Tammy','Nichols','Miami','FL','shirt',80,'blue','2014-11-27','10293','Hackett Group'); 863 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Nguyen','Seattle','WA','shirt',10,'green','2016-10-28','10294','Langosh, Graham and Prohaska'); 864 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Cooper','Akron','OH','shirt',100,'red','2014-06-14','10295','Lebsack, Nitzsche and Schmeler'); 865 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Todd','Lopez','Brooklyn','NY','shirt',60,'blue','2016-05-10','10296',''); 866 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julie','Bell','Punta Gorda','FL','shirt',20,'green','2014-04-21','10297',''); 867 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Timothy','Powell','Stockton','CA','shirt',10,'red','2013-12-18','10298','Morissette-Auer'); 868 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Johnston','New York City','NY','shirt',30,'blue','2016-01-16','10299','Parisian-Windler'); 869 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Joe','Gray','Salt Lake City','UT','shirt',60,'green','2016-07-24','10300','Fadel-McCullough'); 870 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Norma','Cunningham','Brockton','MA','shirt',80,'red','2015-06-16','10301','Gutkowski Inc'); 871 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Teresa','Day','Colorado Springs','CO','shirt',90,'blue','2016-03-15','10302','O''Connell, Larson and Schiller'); 872 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Reid','San Diego','CA','shirt',90,'green','2016-01-29','10303','Runolfsson-Emard'); 873 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Arthur','Lawson','Salt Lake City','UT','shirt',60,'red','2016-04-22','10304','Little-Botsford'); 874 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Stevens','Shreveport','LA','shirt',80,'blue','2014-02-23','10305','Konopelski-Kirlin'); 875 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louise','Garcia','Saint Paul','MN','hat',90,'green','2014-04-30','10306','Wolf-Ullrich'); 876 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bobby','Frazier','Fort Worth','TX','shirt',40,'red','2014-05-11','10307','Bernier-Rippin'); 877 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martin','Simpson','Houston','TX','shirt',100,'blue','2014-07-11','10308',''); 878 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gary','Parker','Albany','NY','hat',90,'green','2016-07-02','10309','Russel-Collier'); 879 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Lopez','Columbus','OH','hat',30,'red','2015-08-08','10310','Klocko, Bahringer and Funk'); 880 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Louis','Watson','Norman','OK','shirt',30,'blue','2014-08-07','10311','Altenwerth, Romaguera and Crooks'); 881 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mark','Franklin','New York City','NY','shirt',80,'green','2015-01-02','10312','Kulas, Schamberger and Crona'); 882 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Daniel','George','Scranton','PA','hat',90,'red','2014-06-04','10313','Runte, Little and Koch'); 883 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Patrick','Watkins','San Francisco','CA','hat',90,'blue','2014-04-27','10314','Gutmann LLC'); 884 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Billy','Banks','San Francisco','CA','shirt',90,'green','2016-08-27','10315','Bauch-Kuhn'); 885 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','Berry','Tacoma','WA','hat',80,'red','2013-12-04','10316','Howell Inc'); 886 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Heather','Little','Saint Petersburg','FL','shirt',80,'blue','2015-12-28','10317',''); 887 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Shaw','Pittsburgh','PA','hat',80,'green','2015-02-08','10318','Roberts-Carter'); 888 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Garcia','Dallas','TX','hat',50,'red','2016-02-23','10319','Cartwright Group'); 889 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Crawford','Warren','MI','shirt',60,'blue','2014-08-29','10320','Schmitt, O''Kon and Okuneva'); 890 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eric','Gardner','Bloomington','IN','hat',100,'green','2015-11-06','10321','Hartmann LLC'); 891 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Margaret','Weaver','Oklahoma City','OK','hat',70,'red','2016-09-02','10322','Hermann, Farrell and Trantow'); 892 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Aaron','Davis','New York City','NY','hat',90,'blue','2014-06-22','10323','Frami, Dibbert and Kuphal'); 893 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Carroll','Denver','CO','hat',10,'green','2016-03-30','10324','Fahey-Rodriguez'); 894 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Justin','Washington','San Antonio','TX','hat',10,'red','2015-09-16','10325','Rosenbaum-Glover'); 895 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Adams','Mesa','AZ','shirt',20,'blue','2014-11-18','10326','Kirlin Inc'); 896 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Greene','Naples','FL','hat',10,'green','2015-11-15','10327','Erdman-Nolan'); 897 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Meyer','Saint Louis','MO','hat',10,'red','2016-10-30','10328','Herman-Kuhic'); 898 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marie','Riley','New Castle','PA','hat',30,'blue','2014-12-15','10329','Harris-Stoltenberg'); 899 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Howard','Morris','New Orleans','LA','hat',90,'green','2015-09-28','10330',''); 900 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bruce','King','Wichita','KS','hat',10,'red','2016-01-19','10331','Yundt, McCullough and Gleichner'); 901 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marilyn','Williams','Lancaster','PA','hat',100,'blue','2016-08-01','10332','Leannon, Armstrong and Gerlach'); 902 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Grant','Jamaica','NY','hat',50,'green','2015-05-28','10333','Becker-Franecki'); 903 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Berry','Mobile','AL','shirt',80,'red','2014-12-28','10334','Senger, Bashirian and O''Hara'); 904 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Scott','Ashburn','VA','hat',90,'blue','2014-02-09','10335','Reichel-Anderson'); 905 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rebecca','Jones','Norfolk','VA','hat',90,'green','2015-01-14','10336','Rolfson, Wolff and Pouros'); 906 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jane','Lopez','North Little Rock','AR','hat',20,'red','2014-06-28','10337','Deckow-Lehner'); 907 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicole','Chavez','Portland','OR','shirt',90,'blue','2014-07-23','10338','Keeling Group'); 908 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jessica','Price','Bronx','NY','hat',90,'green','2015-10-11','10339','Gleichner and Sons'); 909 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paul','Williams','Charleston','WV','hat',100,'red','2014-05-20','10340',''); 910 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ruth','Jackson','Oklahoma City','OK','hat',80,'blue','2016-02-29','10341','Koch, Prohaska and Kunze'); 911 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Morris','Jefferson City','MO','shirt',80,'green','2014-02-11','10342','Cruickshank-Cummerata'); 912 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Katherine','Holmes','El Paso','TX','hat',90,'red','2015-08-24','10343','Kessler, Walter and Haag'); 913 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Garrett','Memphis','TN','hat',60,'blue','2016-01-30','10344',''); 914 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Owens','Fort Wayne','IN','shirt',60,'green','2015-09-21','10345','Kerluke, Hartmann and Trantow'); 915 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Diane','Kelly','Charleston','WV','shirt',90,'red','2015-12-07','10346','Berge Inc'); 916 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Hudson','Savannah','GA','shirt',80,'blue','2014-08-30','10347','Haag and Sons'); 917 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Reyes','Erie','PA','shirt',100,'green','2014-07-03','10348','Stanton, Veum and Homenick'); 918 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Stephens','Green Bay','WI','shirt',80,'red','2016-10-27','10349','Morissette, Bogan and Murphy'); 919 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Grant','Alexandria','LA','hat',10,'blue','2016-05-05','10350','Hagenes-Kassulke'); 920 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','Hanson','Huntington','WV','shirt',90,'green','2016-04-29','10351','McKenzie-Simonis'); 921 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Eric','Nguyen','Dallas','TX','shirt',90,'red','2014-06-20','10352','Kunze, Hirthe and Nader'); 922 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Amy','Lane','Richmond','VA','hat',100,'blue','2014-05-14','10353','Morar and Sons'); 923 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Gardner','Springfield','MA','shirt',100,'green','2016-05-26','10354','Quigley-Bradtke'); 924 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','Cooper','Montgomery','AL','hat',80,'red','2016-03-14','10355',''); 925 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Riley','Peoria','IL','shirt',20,'blue','2015-08-30','10356','Balistreri, Friesen and Ziemann'); 926 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Timothy','Payne','Indianapolis','IN','shirt',60,'green','2016-08-18','10357','Franecki-Yundt'); 927 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Harry','Jones','New Orleans','LA','shirt',90,'red','2015-04-29','10358','Kshlerin LLC'); 928 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Emily','James','Saint Louis','MO','shirt',50,'blue','2015-10-18','10359',''); 929 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Paul','Walker','El Paso','TX','hat',50,'green','2015-05-16','10360','Kub-Schmitt'); 930 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nicholas','Barnes','Pittsburgh','PA','hat',100,'red','2016-06-18','10361','Sawayn and Sons'); 931 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Steve','Pierce','Oklahoma City','OK','shirt',100,'blue','2015-05-06','10362','Gorczany Group'); 932 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mildred','Crawford','Burbank','CA','hat',100,'green','2014-10-26','10363','Muller Group'); 933 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jason','Mitchell','San Francisco','CA','shirt',70,'red','2016-04-01','10364','Krajcik-Gorczany'); 934 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Russell','Dixon','Buffalo','NY','hat',70,'blue','2014-05-25','10365','Schuppe-Crona'); 935 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Boyd','Denver','CO','hat',60,'green','2014-12-22','10366','Olson and Sons'); 936 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Michael','Gonzalez','Louisville','KY','shirt',50,'red','2015-01-28','10367','Stiedemann, Lynch and Lowe'); 937 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Burke','Charlotte','NC','shirt',40,'blue','2014-02-28','10368','Barrows, Prohaska and Bogan'); 938 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ernest','Reed','Virginia Beach','VA','hat',20,'green','2016-08-22','10369','Kuhn-Pfannerstill'); 939 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Walter','Burns','Greeley','CO','shirt',90,'red','2014-11-12','10370','Waelchi, Kemmer and Rutherford'); 940 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Bishop','Waco','TX','hat',100,'blue','2014-03-18','10371','Von, Littel and Bergstrom'); 941 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Norma','Morales','Macon','GA','hat',90,'green','2016-02-05','10372','Kuvalis, Weimann and Jerde'); 942 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Franklin','Mobile','AL','hat',30,'red','2016-10-09','10373','Rohan, Denesik and Luettgen'); 943 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carol','Ross','Newton','MA','shirt',70,'blue','2014-03-21','10374','Pfeffer-Lynch'); 944 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Clarence','Morales','Decatur','IL','shirt',90,'green','2014-07-04','10375','Thompson-Bogisich'); 945 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Burns','Atlanta','GA','hat',90,'red','2014-03-27','10376','Price, Connelly and Goyette'); 946 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Gutierrez','San Jose','CA','hat',20,'blue','2015-01-05','10377','Waelchi, Gerhold and Cremin'); 947 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Doris','Chavez','Alexandria','LA','shirt',80,'green','2015-05-14','10378','Wolff Inc'); 948 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Perez','Richmond','VA','shirt',90,'red','2015-12-02','10379','Gulgowski-Herman'); 949 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrea','Butler','Shawnee Mission','KS','hat',40,'blue','2016-09-14','10380','Effertz, Harber and Roob'); 950 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Black','Reading','PA','hat',60,'green','2014-02-25','10381','Howell LLC'); 951 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Hanson','San Francisco','CA','shirt',50,'red','2014-01-26','10382',''); 952 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Timothy','Fernandez','Houston','TX','shirt',100,'blue','2014-09-05','10383','Hartmann-Kilback'); 953 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mary','Richards','Aurora','CO','hat',70,'green','2014-11-28','10384','Crooks-Walker'); 954 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Peter','Hawkins','Littleton','CO','hat',90,'red','2014-12-27','10385','Walker, Lockman and Kuhic'); 955 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christopher','Walker','Topeka','KS','hat',100,'blue','2016-04-08','10386','Botsford, Senger and Littel'); 956 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rose','Rivera','Raleigh','NC','shirt',70,'green','2015-10-22','10387','Crist, Lindgren and Bogan'); 957 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frances','Miller','New Orleans','LA','shirt',80,'red','2015-05-19','10388','Kirlin LLC'); 958 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Deborah','Snyder','Fort Wayne','IN','hat',100,'blue','2016-09-26','10389','Veum LLC'); 959 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('John','Myers','Topeka','KS','hat',20,'green','2014-04-10','10390','MacGyver Group'); 960 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('David','Thomas','Evansville','IN','hat',70,'red','2016-01-24','10391',''); 961 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','Gonzales','Kansas City','MO','hat',80,'blue','2015-03-11','10392',''); 962 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Annie','Turner','Charlotte','NC','hat',10,'green','2015-07-20','10393','Gerlach-Dicki'); 963 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bonnie','Willis','Saint Petersburg','FL','shirt',80,'red','2016-07-11','10394','Howell Inc'); 964 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Bonnie','Olson','Rochester','NY','hat',80,'blue','2015-07-29','10395',''); 965 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Phillip','Stone','Inglewood','CA','hat',50,'green','2014-07-25','10396','O''Conner, Zboncak and Hyatt'); 966 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frances','Austin','Las Vegas','NV','shirt',100,'red','2014-09-20','10397','Altenwerth-Pfeffer'); 967 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Margaret','Myers','Salinas','CA','hat',80,'blue','2015-10-18','10398','Toy-Hills'); 968 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Irene','Watkins','Saginaw','MI','hat',80,'green','2015-06-05','10399','Stoltenberg, Sawayn and Schulist'); 969 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Charles','Edwards','Des Moines','IA','shirt',40,'red','2016-03-31','10400','Nitzsche, Barrows and Stamm'); 970 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Martha','Hudson','Tacoma','WA','shirt',90,'blue','2016-07-30','10401','Mraz, Bartell and Volkman'); 971 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carolyn','Kelly','Bronx','NY','shirt',90,'green','2016-10-30','10402','O''Reilly-Toy'); 972 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Adam','Garcia','Fort Worth','TX','hat',90,'red','2015-09-20','10403','Erdman, Reilly and Zieme'); 973 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Stevens','Bethesda','MD','hat',90,'blue','2016-11-08','10404','Okuneva-Dickens'); 974 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Gloria','Diaz','Austin','TX','shirt',90,'green','2014-12-01','10405','Mayer-Connelly'); 975 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anthony','Warren','Crawfordsville','IN','hat',80,'red','2014-05-31','10406','Hessel, Sawayn and Wolff'); 976 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ann','Harrison','Wilmington','DE','shirt',80,'blue','2016-08-06','10407','Reilly-Friesen'); 977 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Franklin','Ventura','CA','shirt',90,'green','2014-11-01','10408','Bahringer LLC'); 978 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Hughes','Kansas City','MO','hat',20,'red','2016-03-23','10409','Kris, Labadie and Buckridge'); 979 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lawrence','Washington','Austin','TX','hat',100,'blue','2016-09-03','10410','Waelchi and Sons'); 980 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Matthews','Boise','ID','shirt',90,'green','2015-08-19','10411','Medhurst, Casper and Towne'); 981 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Johnston','New York City','NY','hat',40,'red','2015-03-09','10412','Aufderhar Group'); 982 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donna','Hernandez','Sacramento','CA','shirt',80,'blue','2016-03-21','10413','Schmitt-Swift'); 983 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Bowman','Pompano Beach','FL','hat',80,'green','2014-11-22','10414','Dickinson-Daugherty'); 984 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Cheryl','Wallace','Evansville','IN','hat',40,'red','2014-08-14','10415','DuBuque-Keebler'); 985 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dorothy','Cole','Stamford','CT','hat',30,'blue','2014-07-19','10416','Bartell-Schaden'); 986 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jacqueline','Dixon','Athens','GA','hat',100,'green','2016-01-25','10417','Schroeder and Sons'); 987 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Edward','Mcdonald','Greenville','SC','hat',90,'red','2014-08-26','10418','Klocko, Altenwerth and Huels'); 988 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Juan','Morgan','San Antonio','TX','hat',90,'blue','2013-12-25','10419','Zieme-Smith'); 989 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carol','Robinson','Fresno','CA','shirt',80,'green','2015-01-20','10420','Bauch, Rohan and Davis'); 990 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Victor','Hunt','Rochester','NY','hat',90,'red','2013-12-20','10421','Streich-Marvin'); 991 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Murray','Houston','TX','shirt',90,'blue','2015-06-10','10422','Adams LLC'); 992 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Denise','White','Newton','MA','hat',70,'green','2015-06-15','10423','Walker-Bauch'); 993 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Diane','Perry','Detroit','MI','shirt',90,'red','2015-11-23','10424','Hodkiewicz Group'); 994 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Angela','Ford','Salt Lake City','UT','shirt',20,'blue','2014-10-03','10425','Frami-Mohr'); 995 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carl','Sanders','Pensacola','FL','shirt',90,'green','2014-10-04','10426','Heller-Satterfield'); 996 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Daniel','Alvarez','Spartanburg','SC','shirt',20,'red','2014-05-02','10427',''); 997 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mark','Scott','Valdosta','GA','hat',100,'blue','2016-03-18','10428','Ernser, Eichmann and O''Reilly'); 998 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ashley','Washington','Cincinnati','OH','hat',90,'green','2016-01-04','10429','Gerlach, Heaney and Murazik'); 999 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alice','Shaw','Miami','FL','hat',50,'red','2014-03-30','10430','Hane, Jacobi and Lind'); 1000 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Craig','Turner','Miami','FL','hat',80,'blue','2015-01-11','10431','Hammes, Hauck and Stokes'); 1001 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brenda','Owens','Nashville','TN','hat',40,'green','2014-11-30','10432',''); 1002 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephen','Wagner','Tampa','FL','shirt',20,'red','2014-09-17','10433',''); 1003 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Morris','Jackson','MS','hat',80,'blue','2016-01-05','10434',''); 1004 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeremy','Nguyen','Arlington','TX','shirt',40,'green','2013-11-30','10435','Gottlieb, Willms and Kuhn'); 1005 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roy','Arnold','Lakeland','FL','hat',90,'red','2014-09-11','10436','Windler-Ryan'); 1006 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Lois','Cruz','Fullerton','CA','hat',90,'blue','2016-03-20','10437','Reichert-Schultz'); 1007 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Roger','Harrison','Cumming','GA','hat',90,'green','2015-12-14','10438','Goyette-Johnson'); 1008 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jennifer','Burke','Savannah','GA','hat',80,'red','2014-06-11','10439','Will and Sons'); 1009 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Elliott','Madison','WI','hat',80,'blue','2016-11-11','10440','Roob Inc'); 1010 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brenda','Brooks','Wichita','KS','shirt',90,'green','2016-04-06','10441','Will LLC'); 1011 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christine','Reyes','Orlando','FL','hat',80,'red','2014-09-03','10442','Stokes-Williamson'); 1012 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Earl','Burns','Beaverton','OR','shirt',50,'blue','2014-09-21','10443','Wolff, Pfannerstill and Gaylord'); 1013 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Taylor','Silver Spring','MD','hat',80,'green','2016-10-03','10444','Rosenbaum and Sons'); 1014 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Stevens','Minneapolis','MN','shirt',80,'red','2013-11-17','10445','Little Group'); 1015 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Robin','Ryan','Tampa','FL','hat',30,'blue','2014-11-28','10446','Collins Inc'); 1016 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frank','Hughes','El Paso','TX','shirt',90,'green','2015-08-18','10447','Reinger and Sons'); 1017 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('William','Fernandez','El Paso','TX','shirt',10,'red','2016-07-11','10448','Rolfson-Goldner'); 1018 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jeffrey','Mason','El Paso','TX','hat',70,'blue','2013-12-07','10449','Bernier-Kuphal'); 1019 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Wayne','Williams','Colorado Springs','CO','hat',70,'green','2014-01-25','10450',''); 1020 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Juan','Bradley','Roanoke','VA','hat',70,'red','2015-11-30','10451','Bogan-Muller'); 1021 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kelly','White','Springfield','OH','shirt',90,'blue','2014-04-20','10452','Koelpin, Stokes and Kuhic'); 1022 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','Stevens','Akron','OH','shirt',60,'green','2016-07-11','10453','Feeney, Conroy and Nikolaus'); 1023 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carlos','Chapman','Los Angeles','CA','hat',30,'red','2016-03-27','10454','Bernier, Kling and Lindgren'); 1024 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brian','Bradley','Kansas City','MO','hat',80,'blue','2016-06-07','10455',''); 1025 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Laura','Mason','Milwaukee','WI','shirt',100,'green','2015-10-28','10456','Gutkowski-Mraz'); 1026 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Alice','Roberts','Montgomery','AL','shirt',80,'red','2015-08-25','10457','Langosh Group'); 1027 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Anna','Jackson','Visalia','CA','hat',80,'blue','2013-11-30','10458','Jakubowski Inc'); 1028 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Stephanie','Gomez','Orlando','FL','hat',90,'green','2014-08-31','10459','Marquardt-Ziemann'); 1029 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Maria','Palmer','San Francisco','CA','hat',80,'red','2016-04-04','10460','Williamson-Bradtke'); 1030 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Richard','Russell','Bloomington','IN','hat',70,'blue','2015-12-03','10461','Murray Inc'); 1031 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Theresa','Torres','Austin','TX','hat',40,'green','2015-11-26','10462','Schamberger, Williamson and Casper'); 1032 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Carol','Campbell','Greenville','SC','hat',80,'red','2016-01-02','10463','Mosciski, Haag and Hyatt'); 1033 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Christina','Perry','Austin','TX','shirt',90,'blue','2014-12-11','10464','Schmitt and Sons'); 1034 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Douglas','Peterson','Youngstown','OH','hat',80,'green','2013-11-24','10465','Littel Group'); 1035 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marilyn','Hall','Memphis','TN','hat',100,'red','2014-01-14','10466','Moore-Cormier'); 1036 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kenneth','Black','Myrtle Beach','SC','hat',20,'blue','2015-08-03','10467','Williamson-Moen'); 1037 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Melissa','Richardson','Sioux Falls','SD','hat',60,'green','2016-04-08','10468','Deckow, Cole and Kassulke'); 1038 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Kevin','Garcia','Arlington','VA','hat',30,'red','2015-08-04','10469','Kemmer, Dietrich and Predovic'); 1039 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Dorothy','Boyd','Fairfax','VA','hat',50,'blue','2014-08-01','10470','Stracke-Osinski'); 1040 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julie','Day','Gilbert','AZ','shirt',20,'green','2014-02-12','10471','Kris, Shields and Mills'); 1041 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Catherine','Anderson','Amarillo','TX','shirt',80,'red','2014-07-10','10472','Wisozk and Sons'); 1042 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrea','Johnson','Memphis','TN','hat',90,'blue','2013-11-15','10473','Lockman-Renner'); 1043 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brenda','Brooks','Pittsburgh','PA','hat',100,'green','2015-09-20','10474','Marks-Hintz'); 1044 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Cox','Flint','MI','shirt',100,'red','2016-02-08','10475','Feeney Inc'); 1045 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Ronald','Henry','Arlington','VA','shirt',10,'blue','2015-08-28','10476','Halvorson Inc'); 1046 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Judith','Cole','Minneapolis','MN','hat',80,'green','2015-02-13','10477','Roberts-Goldner'); 1047 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Randy','Larson','Jamaica','NY','hat',100,'red','2014-12-17','10478','Schimmel, Nikolaus and Lehner'); 1048 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Thomas','Jones','Columbia','SC','hat',90,'blue','2014-03-20','10479','D''Amore, Harvey and Wehner'); 1049 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Brandon','Jackson','Alhambra','CA','shirt',90,'green','2015-04-15','10480','Wyman-Hintz'); 1050 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Andrew','Baker','Fort Wayne','IN','shirt',100,'red','2015-04-24','10481','Marks Inc'); 1051 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Simmons','San Francisco','CA','hat',70,'blue','2015-05-19','10482','Hayes-Wyman'); 1052 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Antonio','Romero','Phoenix','AZ','shirt',80,'green','2014-03-25','10483','Ryan Inc'); 1053 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Fred','Lane','Suffolk','VA','shirt',100,'red','2014-03-10','10484',''); 1054 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Elizabeth','Murphy','Memphis','TN','hat',80,'blue','2014-01-26','10485','Morar, Botsford and Crona'); 1055 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Donald','Woods','San Jose','CA','hat',70,'green','2016-04-26','10486','Adams Inc'); 1056 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Peter','Snyder','Sioux Falls','SD','shirt',80,'red','2016-09-04','10487','Wolf-Rodriguez'); 1057 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jimmy','Foster','Colorado Springs','CO','shirt',100,'blue','2015-01-18','10488','Aufderhar-Bosco'); 1058 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Marilyn','Payne','Los Angeles','CA','hat',90,'green','2014-10-15','10489','Torp-Kilback'); 1059 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Julie','Turner','Houston','TX','shirt',90,'red','2015-12-22','10490','Rogahn, Mosciski and Johnston'); 1060 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frances','Hunter','Indianapolis','IN','hat',30,'blue','2015-10-24','10491','Marvin, Schamberger and Purdy'); 1061 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Willie','Olson','Las Vegas','NV','hat',50,'green','2014-01-20','10492','Rogahn, Shields and Fay'); 1062 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Jesse','Gardner','San Antonio','TX','hat',90,'red','2014-04-14','10493','Crist LLC'); 1063 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('John','Gray','El Paso','TX','hat',30,'blue','2016-10-27','10494','Schmidt, Greenholt and Hodkiewicz'); 1064 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Rachel','Jackson','Beaumont','TX','shirt',80,'green','2016-07-10','10495','Terry LLC'); 1065 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Nancy','Roberts','Houston','TX','shirt',70,'red','2015-04-04','10496','Hackett Inc'); 1066 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Frances','Hunter','Madison','WI','shirt',50,'blue','2014-12-14','10497','Bergnaum, Goodwin and Schneider'); 1067 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('Mary','Washington','Farmington','MI','shirt',40,'green','2016-03-05','10498','Eichmann, Kozey and Abbott'); 1068 | INSERT INTO `people` (first_name,last_name,city,state,shirt_or_hat,quiz_points,team,signup,id_number,company) VALUES ('James','Payne','Amarillo','TX','hat',90,'red','2015-09-01','10499','Kuhic Group'); -------------------------------------------------------------------------------- /results.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottsimpson/learning-sql-programming/679dde185c3bd510966f2a0a6c300c777ad1bdbb/results.db -------------------------------------------------------------------------------- /statements.sql: -------------------------------------------------------------------------------- 1 | /* 2 | Statements used in 'Learning SQL Programming' 3 | */ 4 | 5 | -- 00_03 6 | SELECT * FROM people; 7 | SELECT first_name FROM people; 8 | 9 | -- 01_01 10 | SELECT 'Hello, World!'; 11 | SELECT first_name FROM people; 12 | SELECT last_name FROM people; 13 | SELECT first_name, last_name FROM people; 14 | SELECT last_name, first_name FROM people; 15 | SELECT * FROM people; 16 | SELECT first_name, state, company FROM people; 17 | SELECT company, first_name, quiz_points FROM people; 18 | 19 | -- 01_02 20 | SELECT * FROM people WHERE state='CA'; 21 | SELECT * FROM people WHERE state='FL'; 22 | SELECT * FROM people WHERE state='WA'; 23 | SELECT * FROM people WHERE state='NY'; 24 | SELECT * FROM people WHERE shirt_or_hat='NY'; 25 | SELECT * FROM people WHERE shirt_or_hat='hat'; 26 | SELECT first_name, last_name FROM people WHERE shirt_or_hat='shirt'; 27 | SELECT first_name, last_name, shirt_or_hat FROM people WHERE shirt_or_hat='shirt'; 28 | SELECT first_name, last_name, shirt_or_hat WHERE shirt_or_hat='shirt' FROM people; -- Note: This is an invalid statement. 29 | 30 | -- 01_03 31 | SELECT first_name, last_name FROM people WHERE state='CA' AND shirt_or_hat='shirt'; 32 | SELECT first_name, last_name, team FROM people WHERE state='CA' AND shirt_or_hat='shirt' AND team='blue'; 33 | SELECT first_name, last_name, team FROM people WHERE state='CA' AND shirt_or_hat='shirt' AND team IS 'blue'; 34 | SELECT first_name, last_name, team FROM people WHERE state='CA' AND shirt_or_hat='shirt' AND team IS NOT 'blue'; 35 | SELECT first_name, last_name, team FROM people WHERE state='CA' AND shirt_or_hat='shirt' AND team != 'blue'; 36 | SELECT first_name, last_name, team, shirt_or_hat, state FROM people WHERE state='CA' OR state='CO' AND shirt_or_hat='shirt'; 37 | SELECT first_name, last_name, team, shirt_or_hat, state FROM people WHERE (state='CA' OR state='CO') AND shirt_or_hat='shirt'; 38 | 39 | -- 01_04 40 | SELECT first_name, last_name, state FROM people WHERE state LIKE 'C%'; 41 | SELECT first_name, last_name, state FROM people WHERE state LIKE 'N%'; 42 | SELECT first_name, last_name, state FROM people WHERE state LIKE '%N'; 43 | SELECT first_name, last_name, state FROM people WHERE first_name LIKE 'A%'; 44 | SELECT first_name, last_name, state FROM people WHERE first_name LIKE 'J%'; 45 | SELECT first_name, last_name, state FROM people WHERE first_name LIKE '%J%'; 46 | SELECT first_name, last_name, state FROM people WHERE first_name LIKE '%on%'; 47 | SELECT first_name, last_name, state FROM people WHERE first_name LIKE '%ch%'; 48 | SELECT first_name, last_name, state FROM people WHERE company LIKE '%LLC'; 49 | SELECT first_name, last_name, state, company FROM people WHERE company LIKE '%LLC'; 50 | SELECT first_name, last_name, state, company FROM people WHERE company LIKE '%LLC' LIMIT 5; 51 | SELECT first_name, last_name, state, company FROM people WHERE company LIKE '%LLC' LIMIT 10; 52 | SELECT first_name, last_name, state, company FROM people WHERE company LIKE '%LLC' LIMIT 10 OFFSET 5; 53 | 54 | -- 01_05 55 | SELECT first_name, last_name FROM people; 56 | SELECT first_name, last_name FROM people ORDER BY first_name; 57 | SELECT first_name, last_name FROM people ORDER BY first_name ASC; 58 | SELECT first_name, last_name FROM people ORDER BY first_name DESC; 59 | SELECT state, last_name, first_name FROM people ORDER BY state ASC, last_name ASC; 60 | SELECT state, last_name, first_name FROM people ORDER BY state ASC, last_name DESC; 61 | 62 | -- 01_06 63 | SELECT first_name FROM people; 64 | SELECT first_name, LENGTH(first_name) FROM people; 65 | SELECT DISTINCT(first_name) FROM people; 66 | SELECT DISTINCT(first_name) FROM people ORDER BY first_name; 67 | SELECT DISTINCT(shirt_or_hat) FROM people; 68 | SELECT COUNT(*) FROM people WHERE state='CA'; 69 | 70 | -- 02_01 71 | SELECT first_name, state FROM people; 72 | SELECT first_name, state FROM people JOIN states; 73 | SELECT people.first_name, people.state, states.division FROM people JOIN states ON people.state=states.state_abbrev; 74 | SELECT * FROM people JOIN states ON people.state=states.state_abbrev; 75 | SELECT * FROM people JOIN states ON people.state=states.state_abbrev WHERE people.first_name LIKE 'j%' AND states.region='South'; 76 | 77 | -- 02_02 78 | SELECT people.first_name, people.last_name, people.state, states.state_name FROM people JOIN states ON people.state=states.state_abbrev; 79 | SELECT people.first_name, people.last_name, people.state, states.state_name FROM states JOIN people ON people.state=states.state_abbrev; 80 | SELECT people.first_name, people.last_name, people.state, states.state_name FROM states LEFT JOIN people ON people.state=states.state_abbrev; 81 | SELECT DISTINCT(people.state), states.state_abbrev FROM states LEFT JOIN people ON people.state=states.state_abbrev ORDER BY people.state; 82 | 83 | -- 02_03 84 | SELECT first_name, COUNT(first_name) FROM people; 85 | SELECT first_name, COUNT(first_name) FROM people GROUP BY first_name; 86 | SELECT first_name, COUNT(first_name) FROM people GROUP BY last_name; 87 | SELECT last_name, COUNT(first_name) FROM people GROUP BY last_name; 88 | SELECT state, COUNT(state) FROM people GROUP BY state; 89 | SELECT state, quiz_points, COUNT(quiz_points) FROM people GROUP BY quiz_points; 90 | SELECT state, quiz_points, COUNT(quiz_points) FROM people GROUP BY state, quiz_points; 91 | 92 | -- 03_02 93 | SELECT 4+2; 94 | SELECT 1/3; 95 | SELECT 1/3.0; 96 | SELECT 3>2; 97 | SELECT 2>3; 98 | SELECT 5!=3; 99 | SELECT first_name, quiz_points FROM people WHERE quiz_points > 70; 100 | SELECT first_name, quiz_points FROM people WHERE quiz_points >= 70; 101 | SELECT MAX(quiz_points), MIN(quiz_points) FROM people; 102 | SELECT SUM(quiz_points) FROM people; 103 | SELECT team, COUNT(*) FROM people GROUP BY team; 104 | SELECT team, COUNT(*) FROM people; 105 | SELECT team, COUNT(*), SUM(quiz_points), (SUM(quiz_points)/COUNT(*)) AS average FROM people GROUP BY team; 106 | 107 | -- 03_03 108 | 109 | -- 03_04 110 | SELECT first_name, last_name FROM people; 111 | SELECT LOWER(first_name), UPPER(last_name) FROM people; 112 | SELECT LOWER(first_name), SUBSTR(last_name, 1, 5) FROM people; 113 | SELECT LOWER(first_name), SUBSTR(last_name, 2, 4) FROM people; 114 | SELECT LOWER(first_name), SUBSTR(last_name, 2) FROM people; 115 | SELECT LOWER(first_name), SUBSTR(last_name, -2) FROM people; 116 | SELECT LOWER(first_name), SUBSTR(last_name, -4) FROM people; 117 | SELECT LOWER(first_name), REPLACE(last_name, 'a', '_') FROM people; 118 | SELECT quiz_points FROM people ORDER BY quiz_points; 119 | SELECT quiz_points FROM people ORDER BY CAST(quiz_points AS char); 120 | SELECT MAX(CAST(quiz_points AS CHAR)) FROM people; 121 | SELECT MAX(CAST(quiz_points AS INT)) FROM people; 122 | 123 | -- 03_05 124 | SELECT first_name, last_name FROM people; 125 | SELECT first_name, UPPER(last_name) FROM people; 126 | SELECT first_name, UPPER(last_name) AS surname FROM people; 127 | 128 | -- 04_01 129 | INSERT INTO people (first_name) VALUES ('Bob'); 130 | SELECT * FROM people; 131 | INSERT INTO people (first_name, last_name, state, city, shirt_or_hat) VALUES ('Mary', 'Hamilton', 'OR', 'Portland', 'hat'); 132 | SELECT * FROM people; 133 | INSERT INTO people (first_name, last_name) VALUES ('George', 'White'), ('Jenn', 'Smith'), ('Carol', 'Anderson'); 134 | SELECT * FROM people; 135 | 136 | -- 04_02 137 | SELECT * FROM people; 138 | UPDATE people SET first_name='Martha' WHERE first_name='George' AND last_name='White'; 139 | SELECT * FROM people; 140 | SELECT * FROM people WHERE company='Fisher LLC'; 141 | UPDATE people SET company='Megacorp Inc' WHERE company='Fisher LLC'; 142 | SELECT * FROM people WHERE company='Fisher LLC'; 143 | SELECT * FROM people WHERE company='Megacorp Inc'; 144 | 145 | -- 04_03 146 | SELECT * FROM people; 147 | DELETE FROM people WHERE first_name='Martha' AND last_name='White'; 148 | SELECT * FROM people; 149 | DELETE FROM people WHERE id_number IS NULL; 150 | SELECT * FROM people; 151 | --------------------------------------------------------------------------------