SIGN
This page describes the SIGN function in Lenses SQL.
SIGN(numExpr)Processors
SQL Studio
USE `kafka`;
SELECT
SIGN(integer) AS positive,
SIGN(NEG(integer)) AS negative
FROM numbers-data
LIMIT 1;{
"value": {
"positive": 1,
"negative": -1
}
}Last updated
Was this helpful?

