| CREATE TABLE "county" ( | |
| "county_id" integer, | |
| "county_name" text, | |
| "population" real, | |
| "zip_code" text | |
| ); | |
| INSERT INTO county VALUES (1, "howard", 21000.0, "d21"); | |
| INSERT INTO county VALUES (2, "baltimore county", 90000.0, "d08"); | |
| INSERT INTO county VALUES (3, "colony", 79000.0, "d02"); | |
| INSERT INTO county VALUES (4, "mansfield", 87200.0, "d09"); | |
| INSERT INTO county VALUES (5, "manning", 13300.0, "d11"); | |
| CREATE TABLE "party" ( | |
| "party_id" integer, | |
| "year" real, | |
| "party" text, | |
| "governor" text, | |
| "lieutenant_governor" text, | |
| "comptroller" text, | |
| "attorney_general" text, | |
| "us_senate" text | |
| ); | |
| INSERT INTO party VALUES (1, 1998.0, "democratic", "peter vallone", "sandra frankel", "carl mccall", "eliot spitzer", "charles schumer"); | |
| INSERT INTO party VALUES (2, 1998.0, "liberal", "betsy mccaughey ross", "jonathan reiter", "carl mccall", "eliot spitzer", "charles schumer"); | |
| INSERT INTO party VALUES (3, 2002.0, "democratic", "carl mccall", "dennis mehiel", "alan hevesi", "eliot spitzer", "no election"); | |
| INSERT INTO party VALUES (4, 2002.0, "independence", "tom golisano", "mary donohue", "john faso", "eliot spitzer", "no election"); | |
| INSERT INTO party VALUES (5, 2006.0, "democratic", "eliot spitzer", "david paterson", "alan hevesi", "andrew cuomo", "hillary rodham clinton"); | |
| INSERT INTO party VALUES (6, 2006.0, "independence", "eliot spitzer", "david paterson", "alan hevesi", "jeanine pirro", "hillary rodham clinton"); | |
| INSERT INTO party VALUES (7, 2006.0, "working families", "eliot spitzer", "david paterson", "alan hevesi", "andrew cuomo", "hillary rodham clinton"); | |
| CREATE TABLE "election" ( | |
| "election_id" integer, | |
| "counties_represented" text, | |
| "district" integer, | |
| "delegate" text, | |
| "party" integer, | |
| "first_elected" real, | |
| "committee" text | |
| ); | |
| INSERT INTO election VALUES (1, "09.1 9a", 1, "bates gail h. gail h. bates", 1, 2002.0, "appropriations"); | |
| INSERT INTO election VALUES (2, "09.1 9a", 1, "miller warren e. warren e. miller", 1, 2003.0, "economic matters"); | |
| INSERT INTO election VALUES (3, "12.1 12a", 2, "deboy steven j. sr. steven j. deboy sr.", 2, 2002.0, "appropriations"); | |
| INSERT INTO election VALUES (4, "12.1 12a", 3, "malone james e. jr. james e. malone jr.", 2, 1994.0, "environmental matters vice-chair"); | |
| INSERT INTO election VALUES (5, "12.2 12b", 2, "bobo elizabeth elizabeth bobo", 3, 1994.0, "environmental matters"); | |
| INSERT INTO election VALUES (6, "13", 1, "pendergrass shane e. shane pendergrass", 4, 1994.0, "health and government operations"); | |
| INSERT INTO election VALUES (7, "13", 4, "guzzone guy guy guzzone", 1, 2006.0, "appropriations"); | |
| INSERT INTO election VALUES (8, "13", 3, "turner frank s. frank s. turner", 7, 1994.0, "ways and means"); | |
| COMMIT; | |