I tried to do a calculation in SQL Server and to retrieved value with 2 decimal point. However, this is always return me the value in 0 for the 2 decimal point. Does anyone know what is going on there?
example:
select convert(decimal(5,2),((2*100)/19), 2) as 'test'
from customer
The return is always 10.00 instead of 10.53