A column height is integer type in my SQL Server table. I want to do a division and have the result as decimal in my query:
height
Select (height/10) a
select cast (height as decimal)/10 as HeightDecimal