Skip to contents

An is in statement is a soql::soql_where() statement that requires the values of a given column to match one of the entries of a vector of match_values.

Usage

soql_nullable_is_in(soql_list, column, match_values)

Arguments

soql_list

A soql query object, which can be piped in. If one hasn't been created yet, use or pipe in soql::soql().

column

The column to filter on

match_values

A vector of values that column must match, or NULL for no filtering.

Value

A new soql::soql() object with the filter added, or simply the input object if match_value is NULL.