STARTSWITH
This page describes the STARTSWITH function in Lenses SQL.
STARTSWITH(exprSource, exprTarget)Processors
SQL Studio
USE `kafka`;
SELECT
STARTSWITH(email, 'Jo'),
email
FROM users-topic
LIMIT 3;{
"value": {
"STARTSWITH": true,
"email": "Jose.Hood@aol.com"
}
}
{
"value": {
"STARTSWITH": true,
"email": "Joshua.Hernandez@aol.com"
}
}
{
"value": {
"STARTSWITH": false,
"email": "Kathleen.Williams@outlook.com"
}
}Last updated
Was this helpful?

