CONTAINS
This page describes the CONTAINS function in Lenses SQL.
CONTAINS(sourceExpr,targetExpr)Processors
SQL Studio
USE `kafka`;
SELECT
CONTAINS(first_name, 'A'),
first_name first_name
FROM users-topic
LIMIT 2;{
"value": {
"CONTAINS": false,
"first_name": "Jose"
}
}
{
"value": {
"CONTAINS": true,
"first_name": "Amy"
}
}Last updated
Was this helpful?

