SQL Server 四舍五入时间:2021-02-19 09:44:26int a,b;Round(a/b,2);如果b>a结果总是0,晕了!要改成这样的:Round(a/cast(b as float),2);