I have a salary table with this column
EMPLOYEE_NAME SALARY ------------------------ ANNA 113750 MARRY 124300 BELLA 105100 <
try this.
select EMPLOYEE_NAME, ceiling(salary / 1000.0) * 1000.0 as SALARY from table;