select a,b , round(a/b,2) as c from table
select a,b,(a/b) as 对应值 from 表名
select a,b,(a/b) as c from xxxx
select *,convert(decimal(10,2),(a/convert(float,b))) as c from table