如何进行SQL四舍五入?

How to perform the SQL round off?

我想在 MS-SQL 服务器上执行 SQL 舍入。例如 0.5 到 1,1.5 到 2,2.5 到 3.any 帮助将不胜感激

使用CEILING函数。

select val,
ceiling(val) as Rounded
from tbl_name;

Read here about ceiling function

Fiddle demo here