MSSQL 查询用到两个字段相除,如何让他保留小数两位
比如 select a/b as c from table 我想将a/b 得出的 c 的结果能保留到小数2位,要怎么写才能实现呢,请高人指点!
比如 select a/b as c from table 我想将a/b 得出的 c 的结果能保留到小数2位,要怎么写才能实现呢,请高人指点!
答案:select a/b as numeric(10,2))
试一下
其他:select round(a/b,2) as c from table