select 10/2
Output : 5
Select 2/10
Output : 0
Select Convert(numeric(2,2),2/10)
Output : 0.00
Select 10*(Convert(numeric(2,2),2/10))
Output : 0.00
Select 10*(2/10)
Output : 0
Why is the output flawed ?
Are the arithmetic function (Divide) working ?