pub fn gt<'a, V, L, R>(
left: L,
right: R,
) -> SQLExpr<'a, V, <<V as SQLParam>::DialectMarker as DialectTypes>::Bool, NonNull, <<L as Expr<'a, V>>::Aggregate as AggOr<<R as ComparisonOperand<'a, V, L>>::Aggregate>>::Output>where
V: SQLParam + 'a,
L: Expr<'a, V>,
R: ComparisonOperand<'a, V, L>,
<L as Expr<'a, V>>::SQLType: Compatible<<R as ComparisonOperand<'a, V, L>>::SQLType>,
<L as Expr<'a, V>>::Aggregate: AggOr<<R as ComparisonOperand<'a, V, L>>::Aggregate>,Expand description
Greater-than comparison (>).
Requires both operands to have compatible SQL types.