ANONYMIZE
This page describes the ANONYMIZE function in Lenses SQL.
ANONYMIZE(strExpr)Processors
SQL Studio
USE `kafka`;
SELECT
ANONYMIZE(first_name) AS first_name_hidden,
first_name
FROM users-events
LIMIT 1;{
"value": {
"first_name_hidden": "*******",
"first_name": "Charles"
}
}Last updated
Was this helpful?

