NumericExpression<T extends num> extension
SQL arithmetic and aggregation for Dart numeric values.
- on
-
- Expr<
T>
- Expr<
Methods
-
average(
) → Expr< double?> -
Available on Expr<
Computes a floating-point SQL average, or null for an empty group.T> , provided by the NumericExpression extension -
minus(
T n) → Expr< T> -
Available on Expr<
Subtracts a bound value in SQL.T> , provided by the NumericExpression extension -
plus(
T n) → Expr< T> -
Available on Expr<
Adds a bound value in SQL.T> , provided by the NumericExpression extension -
sum(
) → Expr< T?> -
Available on Expr<
Sums values, returning null for an empty group.T> , provided by the NumericExpression extension -
times(
T n) → Expr< T> -
Available on Expr<
Multiplies by a bound value in SQL.T> , provided by the NumericExpression extension