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