Skip to content

Matches a string against a pattern using % (any characters) and _ (single character) wildcards.

func.like(<str> LIKE <pattern>)
get_column(table, 'name').like('%alice%')
┌───────────┐
│ (boolean) │
└───────────┘
LIKE(<str> LIKE <pattern>)
SELECT name FROM users WHERE name LIKE '%alice%';
┌─────────────┐
│ alice_smith │
└─────────────┘