Round *UP* to the nearest 100 in SQL Server

后端 未结 13 790
野性不改
野性不改 2020-12-25 11:18

Is it possible to easily round a figure up to the nearest 100 (or 1000, 500, 200 etc.) in SQL Server?

So:

720 -> 800
790 -> 800
1401 -> 1500

13条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-25 11:34

    This will work for the values with decimal also.

    select floor((ceiling (@value) + 99) / 100) * 100;

提交回复
热议问题