-
Notifications
You must be signed in to change notification settings - Fork 0
/
answers.sql
110 lines (110 loc) · 3.44 KB
/
answers.sql
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(1,1,'Steve Jobs',1),
(2,1,'Román Riquelme',0),
(3,1,'Bill Gates',0),
(4,1,'Linus Torvalds',0),
(7,3,'Linus Torvalds',1),
(8,3,'Bill Gates',0),
(9,3,'Richard Stallman',0),
(10,3,'Aaron Swartz',0),
(11,4,'Gentoo',0),
(12,4,'Ubuntu',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(13,4,'Arch Linux',1),
(14,4,'Hannah Montana Linux',0),
(15,5,'Java',0),
(16,5,'Ninguno',1),
(17,5,'HTML',0),
(18,5,'Visual Basic',0),
(19,6,'Pacman',1),
(20,6,'Pamac',0),
(21,6,'Snaps',0),
(22,6,'RPM',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(23,8,'Jose Néstor Pékerman',1),
(24,8,'Homero Simpson',0),
(25,8,'Jorge Luis Pinto',0),
(26,8,'Hernan Darío Gómez',0),
(27,9,'Megadeth',0),
(28,9,'Metallica',1),
(29,9,'Electric Light Orchestra',0),
(30,9,'Black Eyed Peas',0),
(31,10,'Ernesto Sábato',0),
(32,10,'H.P. Lovecraft',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(33,10,'J.R.R. Tolkien',1),
(34,10,'C.S Lewis',0),
(35,11,'Estados Unidos',0),
(36,11,'España',0),
(37,11,'Rusia',1),
(38,11,'Catar',0),
(39,12,'1919',0),
(40,12,'1945',1),
(41,12,'1970',0),
(42,12,'1939',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(43,13,'Corinthans',0),
(44,13,'Chaco Forever',0),
(45,13,'Vélez Sarsfield',0),
(46,13,'Atlético Nacional',1),
(47,14,'Glenn Greenwald',0),
(48,14,'Julian Assange',1),
(49,14,'Edward Snowden',0),
(50,14,'Alejandro Riaño',0),
(51,15,'Ronnie James Dio',0),
(52,15,'Ozzy Osbourne',1);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(53,15,'Moe Szyslak',0),
(54,15,'Cozy Powell',0),
(55,16,'Microsoft',0),
(56,16,'Dennis Ritchie',1),
(57,16,'Richard Stallman',0),
(58,16,'Bjarne Stroustrup',0),
(59,17,'Elon Musk',0),
(60,17,'Jimmy Wales',1),
(61,17,'Aaron Swartz',0),
(62,17,'Bill Gates',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(63,18,'Darío Bendetto',0),
(64,18,'Frank Fabra',0),
(65,18,'Carlos Tévez',0),
(66,18,'Juan Román Riquelme',1),
(67,19,'Metallica',0),
(68,19,'Anthrax',0),
(69,19,'Slayer',0),
(70,19,'Megadeth',1),
(71,20,'Ronnie James Dio',0),
(72,20,'Tony Martin',1);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(73,20,'Ozzy Osbourne',0),
(74,20,'Lisa Simpson',0),
(75,21,'Ronnie James Dio',1),
(76,21,'Ángel David Revilla',0),
(77,21,'Ozzy Osbourne',0),
(78,21,'James Hetfield',0),
(79,22,'Brazuca',0),
(80,22,'Jabulani',0),
(81,22,'Telstar',1),
(82,22,'Rammstein',0);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(83,23,'Barranquilla FC',1),
(84,23,'Atlético Junior',0),
(85,23,'Cartagena FC',0),
(86,23,'Santa Fé',0),
(87,24,'10',0),
(88,24,'21',0),
(89,24,'11',1),
(90,24,'4',0),
(91,25,'Edgar Allan Poe',0),
(92,25,'H. P. Lovecraft',1);
INSERT INTO sofkachallenge.answers (id,question_id,answer_text,correct) VALUES
(93,25,'Isabel Allende',0),
(94,25,'Mario Vargas Llosa',0),
(95,26,'Uruguay',0),
(96,26,'Holanda',0),
(97,26,'Estados Unidos',0),
(98,26,'Brasil',1),
(99,27,'Universidad de los Andes',0),
(100,27,'Univesidad del Rosario',0),
(101,27,'Universidad Javeriana',0),
(102,27,'Universidad Nacional de Colombia',1);