pub fn gte<'a, V, L, R>( left: L, right: R, ) -> SQLExpr<'a, V, Bool, NonNull, Scalar>where V: SQLParam + 'a, L: Expr<'a, V>, R: Expr<'a, V>, L::SQLType: Compatible<R::SQLType>,
Greater-than-or-equal comparison (>=).
>=
Requires both operands to have compatible SQL types.