1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.example.firstapp.model
|
| import androidx.room.DatabaseView
|
| @DatabaseView(
| """
| SELECT category, COUNT(*) as count
| FROM Code
| GROUP BY category
| """
| )
| data class CourierStat(
| val category: String,
| val count: Int
| )
|
|