DB_Column.like
likepattern
Group: Logical
Documentation
Checks for each element of the column if it matches an SQL-like pattern.
Arguments
pattern: The pattern to matchselfagainst. If it is a column, the operation is performed pairwise between corresponding elements ofselfand that column. The pattern is an SQL-like pattern, where%matches any sequence of characters and_matches any single character.
Examples
Check if elements of a column start with 'F' and end with a dot.
import Standard.Examples
example_contains = Examples.text_column_1.like "F%."