SQL> SELECT 666.88,CEIL(666.88),FLOOR(666.88) FROM dual;
    666.88 CEIL(666.88) FLOOR(666.88)
---------- ------------ -------------
    666.88          667           666

 

CEIL returns the smallest integer that is greater than or equal to n.

FLOOR returns the largest integer equal to or less than n. 

相关文章:

  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2021-07-26
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-10
  • 2021-08-10
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2021-08-03
相关资源
相似解决方案