1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.example.firstapp.model
|
| import androidx.room.DatabaseView
|
| @DatabaseView(
| """
| SELECT date(createtime/1000, 'unixepoch', 'localtime') as date,
| COUNT(*) as count
| FROM code
| GROUP BY date(createtime/1000, 'unixepoch', 'localtime')
| """
| )
| data class DailyStat(
| val date: String,
| val count: Int
| )
|
|