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 height/10.0 AS HeightDecimal FROM dbo.whatever;
If you want a specific precision scale, then say so:
SELECT CONVERT(DECIMAL(16,4), height/10.0) AS HeightDecimal FROM dbo.whatever;