MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL FLOOR() function

In this context, we will learn how we can use the MySQL FLOOR() function with proper syntaxes and examples.

Introduction of MySQL Floor() function:

FLOOR() function in MySQL is used to return the largest integer value which will be either equal to or less than from a given input number.

Syntax of the MySQL Floor() function

The syntax of the MySQL FLOOR() function is given as follows:

FLOOR(expr);

The type of the input number depends on data type of the return value. The type of the returned value is exact numeric or floating-point type respectively, when the type of the input number is exact numeric or floating-point type.

Parameter or arguments used in MySQL Floor() function:

Only one parameter is accepted by the FLOOR (expr) Function, as mentioned above and described below:

expr: This is the expression whose floor value we want to calculate.

Returns: It will return the closest integer which is <=X. So, if Y is integer than it will return Y. Otherwise, largest integer which is lesser than Y.

MySQL versions used for Floor() function:

The FLOOR() function can be used in the given below MySQL versions.

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL Floor() function:

Let’s take some examples of using the FLOOR() function to understand it better.

Example: 1

Now we will Apply FLOOR() function to a positive number in MySQL.

SELECT FLOOR(1.59);

The Output is:

1
1 row in set (0.00 sec)

The result is 1 because it is the largest integer which is less than or equal to 1.59.

Example: 2

Now we will Apply FLOOR() function to a negative number in MySQL.

SELECT FLOOR(1.59);

The Output is:

-2
1 row in set (0.00 sec)

The largest integer which is less than or equal to -1.59 is 2, therefore, the FLOOR() function returned -2.

Example: 3

Now we will Use FLOOR() function in the query of MySQL.

Lets See the following commoditys table from the sample database:

Commodity
Commoditycode
Commodityname
Commodityline
Commodityscale
Commodityvendor
Commoditydescription
Quantityinstock
Buyprice
Msrp

The following statement finds the average stock for each commodity line:

SELECT
commodityLine,
FLOOR(AVG(quantityInStock)) averageStock
FROM
commoditys
GROUP BY
commodityLine
ORDER BY
averageStock;

Here is the output:

CommoditylineAveragemsrp
Trains2154
Ships2365
Vintage cars2973
Planes3482
Motorcycles3894
Trucks and buses4107
Classic cars5115

Because the AVG() function returns a decimal value, we need to apply the FLOOR() function to the average result.

Some more examples:

Example 4:

Now we will Apply FLOOR() function to a +ve integer in MySQL:

SELECT FLOOR(4) AS Floor_Value;

Output:

Floor_Value

4
1 row in set (0.00 sec)

Example 5 :

Now we will Apply FLOOR() function to a -ve integer.

SELECT FLOOR(-6) AS Floor_Value;

Output:

Floor_Value
-6
1 row in set (0.00 sec)

Example 6:

Now we will Apply FLOOR() function to a +ve floating number.

SELECT FLOOR(1.5) AS Floor_Value;

Output:

Floor_Value
1
1 row in set (0.00 sec)

Example 7:

Now we will Apply FLOOR() function to a -ve floating number.

SELECT FLOOR(-1.5) AS Floor_Value;

Output:

Floor_Value
-2
1 row in set (0.00 sec)

Example 8:

Now we will use FLOOR value of a numeric column in a table.

Table – Number

X
90.55
0
-9
-45.76
0.25
SELECT X, FLOOR(X) AS X_Floor FROM Number;

The Output is:

XX_Floor
90.5590
00
-9-9
-45.76-46
0.250

Summary:

In this context, we have learned how we can use the MySQL FLOOR() function to find the largest integer less than or equal to the number given.