I wrote this code to sum up the daily and weekly counts with multiple data registered. What do the 2,3,18,22,27 in created_atday and 7,8,9,13 in created_atweek represent? Also, is there any way to make it easier to understand, such as 2021/3/5 for day and 2021/3/6- for week? I would appreciate it if you could tell me more about this.
JavaScript
x
2
1
Data.objects.values('created_at__day').annotate(Sum('count'))
2
JavaScript
1
2
1
Data.objects.values('created_at__week').annotate(Sum('count'))
2
in the case of created_at__day
JavaScript
1
23
23
1
"data": [
2
{
3
"created_at__day": 2,
4
"count__sum": 1004
5
},
6
{
7
"created_at__day": 3,
8
"count__sum": 491
9
},
10
{
11
"created_at__day": 18,
12
"count__sum": 1221
13
},
14
{
15
"created_at__day": 22,
16
"count__sum": 1201
17
},
18
{
19
"created_at__day": 27,
20
"count__sum": 999
21
}
22
],
23
in the case of created_at__week
JavaScript
1
19
19
1
"report": [
2
{
3
"created_at__week": 7,
4
"time__sum": 1221
5
},
6
{
7
"created_at__week": 8,
8
"time__sum": 1201
9
},
10
{
11
"created_at__week": 9,
12
"time__sum": 1663
13
},
14
{
15
"created_at__week": 13,
16
"time__sum": 999
17
}
18
],
19
Advertisement
Answer
day
is the integer value between 1 and 31 (including 31) which represent the day of the month
week
is the integer value between 1 and 52 (including 52) which represent the week number