Excel中的Excel Ceiling函数等效

时间:2014-06-18 11:31:08

标签: sql

我们在SQL中是否具有类似天花板功能的优点?我需要在SQL下面。

1.1 ------- 1.5
1.2 ------- 1.5
1.3 ------- 1.5
1.4 ------- 1.5
1.5 ------- 1.5
1.6 ------- 2.0

1 个答案:

答案 0 :(得分:9)

可以通过以下方式实现:

select 0.5 * ceiling(1.2/0.5)  -- result -> 1.5
select 0.5 * ceiling(1.5/0.5)  -- result -> 1.5
select 0.5 * ceiling(1.6/0.5)  -- result -> 2