subtract method

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

Add this expression to other.

This is equivalent to this - other in SQL.

Also available as - operator.

Implementation

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