This repository was archived by the owner on Sep 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
252 lines (248 loc) · 30.7 KB
/
database.sql
File metadata and controls
252 lines (248 loc) · 30.7 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
-- Create a database named 'howdif'.
-- USER is a reserved keyword with Postgres
-- You must use double quotes in every query that user is in:
-- ex. SELECT * FROM "user";
-- Otherwise you will have errors!
CREATE TABLE "user" (
"id" SERIAL PRIMARY KEY,
"username" VARCHAR (80) UNIQUE NOT NULL,
"password" VARCHAR (1000) NOT NULL
);
-- Table holds all the data for each log created on the app
CREATE TABLE "emotion_logged" (
"id" serial NOT NULL,
"user_id" integer NOT NULL,
"date" timestamp NOT NULL DEFAULT NOW(),
"primary_emotion" varchar(255) NOT NULL,
"intensity_emotion" varchar(255) NOT NULL,
"intensity_level" integer NOT NULL,
"how_feel" varchar(255),
"why_feel" varchar(255)
);
INSERT INTO "emotion_logged" ("user_id", "date", "primary_emotion", "intensity_emotion", "intensity_level", "how_feel", "why_feel")
VALUES
(1, CAST('2019-12-01 16:53:40.283513' AS timestamp), 'disgust', 'dislike', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-02 16:53:40.283513' AS timestamp), 'sadness', 'gloominess', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-03 16:53:40.283513' AS timestamp), 'surprise', 'uncertainty', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-04 16:53:40.283513' AS timestamp), 'fear', 'timidity', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-05 16:53:40.283513' AS timestamp), 'trust', 'acceptance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-06 16:53:40.283513' AS timestamp), 'joy', 'serenity', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-07 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-08 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-09 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2019-12-10 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-11 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-12 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-13 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-14 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-15 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-16 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-17 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-18 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-19 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-20 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-21 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-22 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-23 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-24 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-25 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-26 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-27 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-28 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-29 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2019-12-30 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-01 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-02 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-03 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-04 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-05 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-06 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-07 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-08 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-09 16:53:40.283513' AS timestamp), 'anger', 'fury', 5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-01-10 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-11 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-12 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-13 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-14 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-15 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-16 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-17 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-18 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-19 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-20 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-21 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-22 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-23 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-24 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-25 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-26 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-27 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-28 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-29 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-01-30 16:53:40.283513' AS timestamp), 'anticipation', 'interest', -5, 'I feel like not dancing', 'I have a dance coming up'),
(1, CAST('2020-02-01 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-02 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-03 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-04 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-05 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-06 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-07 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-08 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-09 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-10 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-11 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-12 16:53:40.283513' AS timestamp), 'joy', 'ecstasy', 5, 'I feel like partying', 'I had an apple that was yummy'),
(1, CAST('2020-02-13 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-14 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-15 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-16 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-17 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-18 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-19 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-20 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-21 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-22 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-23 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-24 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-25 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-26 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-27 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-02-28 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-01 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-02 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-03 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-04 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-05 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-06 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-07 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-08 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-09 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-10 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-11 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-12 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-13 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-14 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-15 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-16 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-17 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-18 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-19 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-20 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-21 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-22 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-23 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-24 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-25 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-26 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-27 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-28 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-29 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-03-30 16:53:40.283513' AS timestamp), 'trust', 'admiration', 5, 'like a ghost', 'I was told by a ghost that it trusted me'),
(1, CAST('2020-04-01 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-04-02 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-03 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-04 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-05 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-06 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-07 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-08 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-09 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-10 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-11 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-12 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-13 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-14 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-15 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-16 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-17 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-18 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-19 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-20 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-21 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-22 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-23 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-24 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-25 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-26 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-27 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-28 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-29 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-04-30 16:53:40.283513' AS timestamp), 'fear', 'terros', 5, 'nothing...', 'I saw a ghost in the mirror!'),
(1, CAST('2020-05-01 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-05-02 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-03 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-04 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-05 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-06 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-07 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-08 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-09 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-10 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-11 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-12 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-13 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-14 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-15 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-16 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-17 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-18 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-19 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-20 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-21 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-22 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-23 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-24 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-25 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-26 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-27 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-28 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-29 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-05-30 16:53:40.283513' AS timestamp), 'surprise', 'amazement', 5, 'I feel like I could role the world', 'I have the power of the world stand.'),
(1, CAST('2020-06-01 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-06-02 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-03 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-04 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-05 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-06 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-07 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-08 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-09 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-10 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-11 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-12 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-13 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-14 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-15 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-16 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-17 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-18 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-19 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-20 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-21 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-22 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-23 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-24 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-25 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-26 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-27 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-28 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-29 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-06-30 16:53:40.283513' AS timestamp), 'sadness', 'grief', 5, 'I feel like I lost everything', 'I lost to JoJo'),
(1, CAST('2020-07-01 16:53:40.283513' AS timestamp), 'anger', 'annoyance', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-07-02 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-03 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-04 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-05 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!');
(1, CAST('2020-07-06 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-07 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-08 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-09 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!');
(1, CAST('2020-07-10 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-11 16:53:40.283513' AS timestamp), 'surprise', 'uncertainty', -5, 'I feel like hulk', 'I didnt have breakfest'),
(1, CAST('2020-07-12 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-13 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!');
(1, CAST('2020-07-14 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-15 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-16 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!'),
(1, CAST('2020-07-17 16:53:40.283513' AS timestamp), 'disgust', 'loathing', 5, 'I feel icky', 'I didnt have breakfest again!');