in_subquery

Function in_subquery 

Source
pub fn in_subquery<'a, V, E, S>(
    expr: E,
    subquery: S,
) -> SQLExpr<'a, V, Bool, NonNull, Scalar>
where V: SQLParam + 'a, E: ToSQL<'a, V>, S: ToSQL<'a, V>,
Expand description

IN subquery check.

Returns true if the expression’s value is in the subquery results.