I am using SQL Server management studio. I have a column named salary. I want another computed column based on salary: (salary *20%+salary)/85 but I don’t get the result.
I tried putting the formula in computed column specification tab under properties tab.
You should be able to use the following to calculate the value:
See a SQL fiddle demo