Answer: FLOOR
Floor is used to round a number down to the last whole number. Any number with even the highest decimal is rounded down.
Examples:
SELECT FLOOR(-5.12);
This will be round down to -6
SELECT FLOOR(5.14);
This will be round down to 5
Asked In: Many Interviews |
Alert Moderator