The INTEGER function returns an integer representation of a number or character string in the form of an integer constant.
INT[EGER] ( numericExpression | characterExpression )
The result of the function is a large integer. If the argument can be null, the result can be null; if the argument is null, the result is the null value.
SELECT INTEGER (SALARY / EDLEVEL), SALARY, EDLEVEL, EMPNO FROM EMPLOYEE ORDER BY 1 DESC