我是这个网站的新手,一般是oracle sqlplus。我需要一些帮助,我需要编写一个脚本,将50中的数字舍入到下一个最高数字。敌人的例子:
If between 1100 to 1149.99 ----> The output would be 1100
If between 1100 to 1189.99 ----> The output would be 1150
请你帮我解决这个问题。
由于
答案 0 :(得分:2)
您不清楚自己真正想要的是什么(次高或次低):
mynum := Ceil(mynum / 50) * 50;
mynum := Floor(mynum / 50) * 50;
答案 1 :(得分:0)
实施例: 从chrg中选择round(chrg / 50)* 50