【转】SQL中的取整函数FLOOR、ROUND、CEIL、TRUNC、SIGN

--------------------------------------------------------------------------
1 trunc(value,precision)按精度(precision)截取某个数字,不进行舍入操作。
2 round(value,precision)根据给定的精度(precision)输入数值。
3 ceil (value) 产生大于或等于指定值(value)的最小整数。
4 floor(value)与 ceil()相反,产生小于或等于指定值(value)的最小整数。
5 sign(value) 与绝对值函数ABS()相反。ABS()给出的是值的量而不是其符号,sign(value)则给出值的符号而不是量。
--------------------------------------------------------------------------

1,返回大于或等于x的最大整数:
select ceil(23.33) from dual;

CEIL(23.33)
-----------
24

2,返回等于或小于x的最大整数:
select floor(23.33) from dual;

FLOOR(23.33)
------------
23

3,返回舍入到小数点右边y位的x值:rcund(x,[y])
select round(23.53,2) from dual;

ROUND(23.33)
------------
23

4,返回截尾到y位小数的x值:trunc(x,[y])
select trunc(23.33123123) from dual;

TRUNC(23.33)
------------
23

5,返回x的符号
select sign(-23.33) from dual;

SIGN(-23.33)
------------
-1

时间: 2024-10-09 04:47:46

【转】SQL中的取整函数FLOOR、ROUND、CEIL、TRUNC、SIGN的相关文章

问题:oracle floor;结果:Oracle的取整和四舍五入函数——floor,round,ceil,trunc使用说明

Oracle的取整和四舍五入函数——floor,round,ceil,trunc使用说明 (2011-04-06 16:10:35) 转载▼ 标签: 谈 分类: 渐行渐远 FLOOR——对给定的数字取整数位 SQL> select floor(2345.67) from dual; FLOOR(2345.67) -------------- 2345 CEIL-- 返回大于或等于给出数字的最小整数 SQL> select ceil(3.1415927) from dual; CEIL(3.14

Oracle的取整和四舍五入函数——floor,round,ceil,trunc使用说明

Oracle的取整和四舍五入函数——floor,round,ceil,trunc使用说明 FLOOR——对给定的数字取整数位SQL> select floor(2345.67) from dual; FLOOR(2345.67)--------------2345 CEIL-- 返回大于或等于给出数字的最小整数SQL> select ceil(3.1415927) from dual; CEIL(3.1415927)---------------              4 ROUND——按

php取整函数floor(),round(),intval(),ceil()

ceil -- 进一法取整说明float ceil ( float value )返回不小于 value 的下一个整数,value 如果有小数部分则进一位.ceil() 返回的类型仍然是 float,因为 float 值的范围通常比 integer 要大. PHP取整函数例子 1. ceil() 例子 < ?php echo ceil(4.3); // 5 echo ceil(9.999); // 10 ?> floor -- 舍去法取整说明float floor ( float value

SQL中的取整函数、取小数

取整函数: 1.trunc(value,precision)按精度(precision)截取某个数字,不进行舍入操作.返回截尾到y位小数的x值:trunc(x,[y]): select trunc(23.33) ------------ 23 2.round(value,precision)根据给定的精度(precision)输入数值[四舍五入取整].返回舍入到小数点右边y位的x值:round(x,[y]): select round(23.33) ------------ 23 3.ceili

取整函数floor与ceil

在某些情况下, 我们需要对小数进行进位与舍位, 而非四舍五入, 这时候, 我们就需要用到floor函数与ceil函数. floor函数的作用是"向下取整", 也即是说, floor(x)会取到小于等于x的最大整数, 例: x = 2.88, 则floor(x) = 2; 假如要保留两位小数, 则floor(x*100)/100 ceil函数的作用则相反, 是"向上取整", 也即是说, ceil(x)会取到大于等于X的最小整数, 例: x = 1.01, 则ceil(

C#中的取整函数

先放百度的 Math.Ceiling();向上取整 Math.Ceiling()向上取整: d = 4.56789 string res = Math.Ceiling(Convert.ToDecimal(d)).ToString(); res=5 Math.Floor()向下取整 :string res = Math.Floor(Convert.ToDouble(d)).ToString(); es=4 Math.Round是"就近舍入",当要舍入的是5时与"四舍五入&quo

pl/sql中的取模运算

pl/sql语言的取模(即求余)运算不使用大部分语言所支持的 a%b 而是使用函数 mod(a,b) 例子如下:写一个匿名块判断某年是否是闰年,能被4但是不能被100整除,或者能被400整除 1 declare 2 judge varchar2(200); 3 year_input number; 4 begin 5 year_input := '&输入年份'; 6 if (mod(year_input, 400) = 0 or 7 (mod(year_input, 4) = 0 and mod

C#取整函数Math.Round、Math.Ceiling和Math.Floor

1.Math.Round:四舍六入五取偶 引用内容 Math.Round(0.0) //0Math.Round(0.1) //0Math.Round(0.2) //0Math.Round(0.3) //0Math.Round(0.4) //0Math.Round(0.5) //0Math.Round(0.6) //1Math.Round(0.7) //1Math.Round(0.8) //1Math.Round(0.9) //1 说明:对于1.5,因要返回偶数,所以结果为2. 2.Math.Ce

JavaScript中Math--random()/floor()/round()/ceil()

Math.random():返回0-1之间的任意数,不包括0和1: Math.floor(num):返回小于等于num的整数,相当于四舍五入的四舍,不五入:例子:Math.floor(1.0);Math.floor(1.5);Math.floor(1.9);都返回1: Math.round(num):num进行四舍五入:例子:Math.round(1.0);Math.round(1.4);返回1;/Math.round(1.5);Math.round(1.9);返回2; Math.ceil(nu