pub fn lt<'a, V, L, R>(
left: L,
right: R,
) -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Bool, NonNull, <L::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::SQLType: Compatible<<R as ComparisonOperand<'a, V, L>>::SQLType>,
L::Aggregate: AggOr<<R as ComparisonOperand<'a, V, L>>::Aggregate>,Expand description
Less-than comparison (<).
Requires both operands to have compatible SQL types.