trunc()是什么(0分)

  • 主题发起人 主题发起人 hanxin
  • 开始时间 开始时间
H

hanxin

Unregistered / Unconfirmed
GUEST, unregistred user!
请问
trunc()实现什么功能
 
1.TRUNC(date[,fmt])
date:日期值~
fmt: 该日期将由指定的元素格式所截去~
trunc(sysdate,'yyyy') --返回当年第一天.
2.TRUNC(number[,decimals])
number 待做截取处理的数值
decimals 指明需保留小数点后面的位数。可选项,忽略它则截去所有的小数部分
TRUNC(89.985,2)=89.98
 
截取函数
 
取整函数.
 
Unit
System
Category
arithmetic routines
function Trunc(X: Extended): Int64;
Description
The Trunc function truncates a real-type value to an integer-type value. X is a real-type expression. Trunc returns an Int64 value that is the value of X rounded toward zero.
If the truncated value of X is not within the Int64 range, an EInvalidOp exception is raised.
 
楼上,有用的就这一句: Trunc returns an Int64 value that is the value of X rounded toward zero.
 
to :luoyanqing119
说话不要太片面。
 
后退
顶部