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

Related Articles

PLSQL | FLOOR Function

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

The FLOOR is an inbuilt function in PLSQL which is used to return the largest integer value which will be either equal to or less than from a given input number. 

Syntax: 
 

FLOOR(number)

Parameters Used: 
This function accepts a parameter number which is the input number on which FLOOR function is called. 

Return Value: 
This function returns the largest integer value which will be either equal to or less than from a 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 FLOOR function: 

Example-1: 
 

DECLARE 
   Test_Number number1 := 2.6;
   
BEGIN 
   dbms_output.put_line(FLOOR(Test_Number number1)); 
   
END; 

Output: 
 

2

In the above example, some parameter is taken. Like 2.6 is taken as the parameter and 2 is returned because 2 is the greatest whole number less than 2.6 

Example-2: 
 

DECLARE 
   Test_Number number1 := -2.6;
   
BEGIN 
   dbms_output.put_line(FLOOR(Test_Number number1)); 
   
END; 

Output: 
 

-3

In the above example, some parameter is taken. In the above example, -2.6 is taken as the parameter and -3 is returned because -3 is the greatest whole number less than -2.6 

Advantage: 
This function is used to find out the largest integer value which will be either equal to or less than from a given input number.
 

My Personal Notes arrow_drop_up
Last Updated : 19 Feb, 2021
Like Article
Save Article
Similar Reads