Skip to main content
@overload
Column.isin(
    *elements: ConstantT_co,
) → MembershipCondition[ColumnIdentifier, ‘IN’, TypeVar] | RelationalCondition[ColumnIdentifier, ‘EQ’, TypeVar]
@overload
Column.isin(
    *elements: ConstantT_co | None,
) → MembershipCondition[TypeAliasForwardRef, ‘IN’, TypeVar | NoneType] | RelationalCondition[TypeAliasForwardRef, ‘EQ’, TypeVar | NoneType]
Return a condition evaluating to True for elements of this column included in the given elements, and evaluating to False elsewhere.

Parameters

*elements

One or more values that the column elements will be compared against.