floor()
Table of Contents
Examples
The following example rounds down the value in 'test' column with floor() and returns the result in a separate column.
| makeresults
| eval test = 5.5
| eval testCeil = floor(test)
The following example rounds down 5.9 with floor() and returns 5 as the result.
| makeresults
| eval test = floor(5.9)