-
Notifications
You must be signed in to change notification settings - Fork 0
/
jabberdata.sql
87 lines (84 loc) · 1.63 KB
/
jabberdata.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
insert into jabberuser (
values (0, 'donaldJtrump', '[email protected]'),
(1, 'kim','[email protected]'),
(2, 'DavidBowie','[email protected]'),
(3, 'HackerTDog','[email protected]'),
(4, 'robertsmith', '[email protected]'),
(5, 'klopp', '[email protected]'),
(6, 'percy', '[email protected]'),
(7, 'cyborg', '[email protected]'),
(8, 'icebear', '[email protected]'),
(9, 'solesurvivor', '[email protected]'),
(10, 'ellie', '[email protected]'),
(11, 'jumpman', '[email protected]'),
(12, 'edballs', '[email protected]')
);
insert into jab(
values(0, 0, 'MAGA!'),
(1, 0, 'SAD!'),
(2, 1, 'uokhun'),
(3, 2, 'My version of The Man Who Sold The World is way better'),
(4, 3, 'WOOF!'),
(5, 0, 'covfefe'),
(6, 12, 'Ed Balls'),
(7, 7, 'anybody watching that Gumball show?'),
(8, 8, 'ice bear says We Bare Bears is the best show'),
(9, 11, 'coming for you, Donkey Kong!!!'),
(10, 9, 'Mmm, roasted mirelurk for lunch.'),
(11, 3, 'WOOF!!!')
);
insert into follows(
values(1,2),
(11,2),
(0,12),
(0,11),
(0,6),
(0,7),
(1,3),
(1,0),
(1,12),
(2,0),
(2,9),
(3,1),
(3,7),
(3,8),
(6,0),
(6,8),
(6,10),
(7,0),
(7,3),
(9,1),
(9,4),
(9,11),
(11,0),
(11,12),
(12,11),
(12,0),
(0,0),
(1,1),
(2,2),
(3,3),
(4,4),
(5,5),
(6,6),
(7,7),
(8,8),
(9,9),
(10,10),
(11,11),
(12,12)
);
insert into likes (
values(0,2),
(2,3),
(0,4),
(0,11),
(1,2),
(1,6),
(3,3),
(3,11),
(4,10),
(10,0),
(7,0),
(10,10)
);