if you are using SQL Server, try ROUND function, for exampleselect ROUND(748.58, 0)
==>
749.00

解决方案 »

  1.   

    ROUND
    返回数字表达式并四舍五入为指定的长度或精度。语法
    ROUND ( numeric_expression , length [ , function ] ) 参数
    numeric_expression精确数字或近似数字数据类型类别的表达式(bit 数据类型除外)。length是 numeric_expression 将要四舍五入的精度。length 必须是 tinyint、smallint 或int。当 length 为正数时,numeric_expression 四舍五入为 length 所指定的小数位数。当 length 为负数时,numeric_expression 则按 length 所指定的在小数点的左边四舍五入。function是要执行的操作类型。function 必须是 tinyint、smallint 或 int。如果省略 function 或 function 的值为 0(默认),numeric_expression 将四舍五入。当指定 0 以外的值时,将截断 numeric_expression。
      

  2.   

    declare @i float,@j float
    set @i=2.25
    set @j=2.75select floor(@i+0.5)select floor(@j+0.5)go
      

  3.   

    Sorry,我笨.
    select round(@i,0)select round(@j,0)go