Open In App

PLSQL | CEIL Function

Last Updated : 04 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The CEIL is an inbuilt function in PLSQL which is used to return the smallest integer value which is either greater than or equal to the given input number. This input number might be in the fraction or in the whole number.

Syntax:

CEIL(number)

Parameters Used:
Here the parameter number is the input number on which CEIL function will be called.

Return Value:
This function returns the smallest integer value which is either greater than or equal to the given input number.

Supported Versions of Oracle/PLSQL:

  1. Oracle 12c
  2. Oracle 11g
  3. Oracle 10g
  4. Oracle 9i
  5. Oracle 8i

Let’s see some examples which illustrate the CEIL function:

Example-1:

DECLARE 
   Test_Number number := 2.6;
   
BEGIN 
   dbms_output.put_line(CEIL(Test_Number number)); 
   
END;  

Output:

3

In the above example, 2.6 is taken as the parameter and 3 is returned because 3 is the smallest whole number greater than 2.6

Example-2:

DECLARE 
   Test_Number number := -2.6;
   
BEGIN 
   dbms_output.put_line(CEIL(Test_Number number)); 
   
END; 

Output:

-2

In the above example, -2.6 is taken as the parameter and -2 is returned because -2 is the smallest whole number greater than -2.6

Advantage:
This function is used to find out the smallest integer value which is either greater than or equal to the given input number. This input number might be in the fraction or in the whole number.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads