I have a salary table with this column
EMPLOYEE_NAME SALARY ------------------------ ANNA 113750 MARRY 124300 BELLA 105100 <
You can use the CEILING function.
CEILING
Like:
SELECT EMPLOYEE_NAME CEILING(SALARY)
Read this for further details
Short summary from the above link:
In SQL Server (Transact-SQL), the CEILING function returns the smallest integer value that is greater than or equal to a number.