[ NOT ] IN (Lakehouse v1)
Checks whether a value is (or is not) in an explicit list.
Analyze Syntax
Section titled “Analyze Syntax”table.columns.in_((<value1>, <value2> ...))Analyze Examples
Section titled “Analyze Examples”table.columns.in_((<value1>, <value2> ...))
┌──────────────────────────┐│ table.column.in_((2, 3)) │├──────────────────────────┤│ true │└──────────────────────────┘SQL Syntax
Section titled “SQL Syntax”<value> [ NOT ] IN (<value1>, <value2> ...)SQL Examples
Section titled “SQL Examples”SELECT 1 NOT IN (2, 3);
┌────────────────┐│ 1 not in(2, 3) │├────────────────┤│ true │└────────────────┘