subtract method

Expr<double> subtract(
  1. Expr<double> other
)

Add this expression to other.

This is equivalent to this - other in SQL.

Also available as - operator.

Implementation

Expr<double> subtract(Expr<double> other) =>
    ExpressionNumSubtract(this, other);