IS_INTEGER (consulta NoSQL)
SE APLICA A: NoSQL
Devuelve un valor booleano que indica si un número es un entero de 64 bits con signo. Los enteros con signo de 64 bits van de -9,223,372,036,854,775,808
a 9,223,372,036,854,775,807
. Para saber más, vea __int64.
Sintaxis
IS_INTEGER(<numeric_expr>)
Argumentos
Descripción | |
---|---|
numeric_expr |
Una expresión numérica. |
Tipos de valores devueltos
Devuelve un booleano.
Ejemplos
Este ejemplo muestra la función con varios valores estáticos.
SELECT VALUE {
smallDecimalValue: IS_INTEGER(3454.123),
integerValue: IS_INTEGER(5523432),
minIntegerValue: IS_INTEGER(-9223372036854775808),
maxIntegerValue: IS_INTEGER(9223372036854775807),
outOfRangeValue: IS_INTEGER(18446744073709551615)
}
[
{
"smallDecimalValue": false,
"integerValue": true,
"minIntegerValue": true,
"maxIntegerValue": true,
"outOfRangeValue": false
}
]
Comentarios
- Esta función se beneficia de un índice de intervalo.
Consulte también
- System functions (Funciones del sistema)
IS_NUMBER