Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

PLSQL | CEIL Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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.

My Personal Notes arrow_drop_up
Last Updated : 04 Nov, 2019
Like Article
Save Article
Similar Reads