IntColumnAggregates<Tbl> extension
Numeric aggregates for integer columns. SQLite returns NULL over an empty set, so these decode to nullable Dart types.
- on
-
- TableColumn<
int, Tbl>
- TableColumn<
Methods
-
avg(
) → Aggregate< double?> -
Available on TableColumn<
int, Tbl> , provided by the IntColumnAggregates extension -
max(
) → Aggregate< int?> -
Available on TableColumn<
int, Tbl> , provided by the IntColumnAggregates extension -
min(
) → Aggregate< int?> -
Available on TableColumn<
int, Tbl> , provided by the IntColumnAggregates extension -
sum(
) → Aggregate< int?> -
Available on TableColumn<
int, Tbl> , provided by the IntColumnAggregates extension