oracle function floor (x)

[Function] returns the largest integer less than or equal to value x

Parameters x, numeric expressions

[Back] Digital

 

[Example]

  select floor(3.1),floor(2.8+1.3),floor(0) from dual;

Return 4,5,0

Guess you like

Origin www.cnblogs.com/fanweisheng/p/11120101.html