elasticsearch/docs/reference/esql/functions/floor.asciidoc

24 lines
589 B
Plaintext
Raw Normal View History

[[esql-floor]]
=== `FLOOR`
[.text-center]
image::signature/floor.svg[]
Round a number down to the nearest integer.
[source.merge.styled,esql]
----
include::{esql-specs}/math.csv-spec[tag=floor]
----
[%header.monospaced.styled,format=dsv,separator=|]
|===
include::{esql-specs}/math.csv-spec[tag=floor-result]
|===
NOTE: This is a noop for `long` (including unsigned) and `integer`.
For `double` this picks the the closest `double` value to the integer ala
{javadoc}/java.base/java/lang/Math.html#floor(double)[Math.floor].
Supported types:
include::types/floor.asciidoc[]