Column.isin(*elements: ConstantT_co) → MembershipCondition[ColumnIdentifier, ‘IN’, TypeVar] | RelationalCondition[ColumnIdentifier, ‘EQ’, TypeVar]
Column.isin(*elements: ConstantT_co | None) → MembershipCondition[TypeAliasForwardRef, ‘IN’, TypeVar | NoneType] | RelationalCondition[TypeAliasForwardRef, ‘EQ’, TypeVar | NoneType]
Return a condition evaluating toTrue 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.