码迷,mamicode.com
首页 > 其他好文 > 详细

postgres 取整函数 trunc

时间:2020-07-20 22:24:46      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:小数点   lang   函数   pos   sele   简单   gre   小数   pytho   

示例:

select trunc(123.4, 1);
-- 123.4 正数1表示小数点的个数
select trunc(123.4, -2);
-- 100 
select trunc(123.4, -3);
-- 0 -3表示最小值从1000算起,不足1000的则为零

现有需求0到9取0,10 到19取 10

其实这种取整的需求也可以用简单的计算来实现,比如python

# 获取的数据以10递增
int(123/10)*10
# 结果为120

postgres 取整函数 trunc

标签:小数点   lang   函数   pos   sele   简单   gre   小数   pytho   

原文地址:https://www.cnblogs.com/qianxunman/p/13347278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!