COALESCE
This page describes the COALESCE function in Lenses SQL.
COALESCE(value, prevValue)Processors
SQL Studio
USE `kafka`;
SELECT
COALESCE(modified_at, "not updated") AS modified_at
FROM users-events
WHERE modified_at IS NULL
LIMIT 1;{
"value": {
"modified_at": "not updated"
}
}Last updated
Was this helpful?

