我们在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
答案 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