Examples of FLOOR Function :
Example 1 : Use of FLOOR function in select clause
SELECT FLOOR(560.550)
Output
560
Above example returns largest integer number less than the specified positive number.
Example 2 : Use of FLOOR function in select clause
Output
Above example returns largest integer number less than the specified negative number.