Casting as decimal with precision 2, keeps returning 00 after the decimal. How do I actually return values?
column1 hourlycolumn1
---------- ------------------
9797 163.00
358 5.00
265 4.00
select top 10
column1,cast(column1/60 as decimal(6,2)) as "hourlycolumn1"
from
....
What I would like to return is below
column1 hourlycolumn1
---------- ------------------
9797 163.28
358 5.96
265 4.41