Skip to main content

Documentation Index

Fetch the complete documentation index at: https://kumo.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

<expression> LIKE <value>

Description

Corresponds to the SQL LIKE operation, which matches <expression> with <value> using % as a wildcard. This functionality can be replicated using the STARTS WITH, ENDS WITH, and CONTAINS operators. <expression> can be <table>.<column> or AGG(<table>.<column>, <start>, <end>). This operator can only be applied to text columns.

Example

LAST(LOAN.STATUS, 0, 30) LIKE '%SUCCESS'