postgresql – 圆号UP到10的倍数

前端之家收集整理的这篇文章主要介绍了postgresql – 圆号UP到10的倍数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Postgresql中轻松地将数字UP转换为10的倍数?

例:

In      Out
100 --> 100
111 --> 120
123 --> 130

样品数据:

create table sample(mynumber numeric);

insert into sample values (100);
insert into sample values (111);
insert into sample values (123);

我可以用:

select 
 mynumber,case
    when mynumber = round(mynumber,-1) then mynumber 
    else round(mynumber,-1) + 10 end as result
from
 sample;

这样做很好,但看起来很丑陋.有更简单的做法吗?

你可以找到sqlFiddle here

select ceil(a::numeric / 10) * 10
from (values (100),(111),(123)) s(a);
 ?column? 
----------
      100
      120
      130
原文链接:https://www.f2er.com/postgresql/191685.html

猜你在找的Postgre SQL相关文章