The DIGITS function returns a character-string representation of a number.
The argument must be an expression that returns a value of type SMALLINT, INTEGER, BIGINT or DECIMAL.
If the argument can be null, the result can be null; if the argument is null, the result is the null value.
The result of the function is a fixed-length character string representing the absolute value of the argument without regard to its scale. The result does not include a sign or a decimal character. Instead, it consists exclusively of digits, including, if necessary, leading zeros to fill out the string. The length of the string is:
• 5 if the argument is a small integer
• 10 if the argument is a large integer
• 19 if the argument is a big integer
• p if the argument is a decimal number with a precision of p.
digits函数返回一个代表数字的字符串。
参数必须是一个表达式 ,返回整形,samllint,integer,bigint or decimal.
如果参数可能是空的,结果也可能是空的。如果参数是空的 ,记过肯定是空的。
函数的返回值是没有考虑参数的规格代表他的绝对值的固定长度的字符串,
返回值不包括符号或者小数字符。 相反 他包括数字 ,如有必要 前导为零来填充。
分享到:
相关推荐
DB2数值函数简介及使用 1、取绝对值的函数:abs、absval 2、向上取整:ceil、ceiling 3、向下取整数:floor 4、求M的n次幂:power(M,n) 5、随机数:rand(m)函数 6、四舍五入:round (m,n) 7、将数值转换为字符串形式...
DB2 是一款强大的关系型数据库管理系统,其内置了大量的函数,以支持各种数据处理和分析任务。在DB2中,函数的使用是数据库查询语言SQL的重要组成部分。以下是对DB2常用函数的详细介绍: 1. AVG 函数:这个函数用于...
### DB2函数大全 在数据库管理系统(DBMS)中,IBM DB2是一款强大的产品,它不仅提供了稳定、高效的数据存储服务,还内置了丰富的SQL函数,这些函数极大地简化了开发人员处理数据的工作。本文将详细介绍DB2中的一些...
25. DIGITS 函数:用字符串表示数值。 26. DOUBLE 函数:返回双精度浮点型。 27. ENCRYPT 函数:数据加密函数。 28. EVENT_MON_STATE 函数:返回事件监视器状态。 29. EXP 函数:指数函数。 30. FLOAT 函数:返回单...
### DB2函数详解 #### 第一章 聚集函数 **1.1 AVG:平均数** - **定义**:`AVG` 函数用于计算指定列的平均值。 - **用途**:常用于统计数据的平均值,如计算员工的平均工资等。 - **语法示例**: ```sql SELECT...
5. **EditText提示信息**:在EditText中,android:hint属性用于设置输入框的提示文本,而不是inputType、text或digits。 6. **Math.ceil()函数**:Math.ceil()函数返回大于或等于给定浮点数的最大整数。所以99.1会...
用 rs("别名") 获取统的计值,其它函数运用同上。 (5) 数据表的建立和删除: CREATE TABLE 数据表名称(字段1 类型1(长度),字段2 类型2(长度) …… ) 例:CREATE TABLE tab01(name varchar(50),datetime default ...