Conversion
This page describes how to use conversion or CAST functions in Lenses SQL Processors.
CAST
CAST (dt AS int)Processors
SQL Studio
USE `kafka`;
SELECT
CAST(price as INT),
price
FROM products-events
LIMIT 1;{
"value": {
"alias": 2, # new value
"price": 2.46 # old value
}
}Last updated
Was this helpful?

