CEIL
FLOOR
ROUND
Returns the floor (largest integer not greater than x).
FLOOR(x)
Enter values below to update the example in real time.
salary
salary_band
employees
SELECT FLOOR(salary / 1000.0) * 1000 AS salary_band FROM employees;