declare @a floatdeclare @b floatset @a=20.00
set @b=39.00
select @a/@b
select convert(decimal(18,2),@a/@b)