-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparty.txt
40 lines (40 loc) · 816 Bytes
/
party.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
DROP TABLE IF EXISTS `party`;
CREATE TABLE presidential_elections.party
(name VARCHAR(64) NOT NULL);
INSERT INTO `party` (`name`) VALUES
('Democratic'),
('Republican'),
('Constitution'),
('Libertarian'),
('Green'),
('Independent'),
('Reform'),
('Taxpayers'),
('Populist'),
('New Alliance'),
('Citizens'),
('American Independent'),
('American'),
('State\'s Rights'),
('Progressive'),
('Socialist'),
('Prohibition'),
('Union'),
('Communist'),
('Farmer-Labor'),
('Democratic/Populist'),
('National Democrat'),
('Union Labor'),
('Greenback'),
('Liberal Republican'),
('Southern Democrat'),
('Constitutional Union'),
('Whig-American'),
('Whig'),
('Free Soil'),
('National Republican'),
('Ind. Democrat'),
('Democratic-Republican'),
('Federalist'),
('Anti-Federalist'),
('none')