The human resources department needs to show the employee number, last name, salary and salary increased by 10.5% (expressed as a whole number) of each employee. I labeled the column as New Salary
.
I do it like this:
SELECT [numero de empleado]
,apellido
,salario + (salario * 0.105) AS New_salary
FROM empleados
Perfect, I just need the values of the salary calculation to be whole. Any ideas? Currently he throws them at me this way:
3315.0000000