For the complete documentation index, see llms.txt. This page is also available as Markdown.

FLOOR

This section contains reference documentation for the FLOOR function.

Rounded down to the nearest integer.

Signature

FLOOR(col1)

Usage Examples

select FLOOR(12.1) AS value
from ignoreMe
value

12

select FLOOR(-12.1) AS value
from ignoreMe
value

-13

Last updated

Was this helpful?