Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 357 Bytes

File metadata and controls

31 lines (22 loc) · 357 Bytes
description
This section contains reference documentation for the FLOOR function.

FLOOR

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