oracle to_char函数的功能是将数值型或者日期型转化为字符型,下面就为您详细介绍oracle to_char函数的使用,希望对您能有所帮助。
postgres 格式化函数提供一套有效的工具用于把各种数据类型(日期/时间,int,float,numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成原始的数据类型。
注意:所有格式化函数的第二个参数是用于转换的模板。
表 5-7. 格式化函数
函数 | 返回 | 描述 | 例子 |
---|---|---|---|
to_char(timestamp, text) | text | 把 timestamp 转换成 string | to_char(timestamp ‘now’,’hh12:mi:ss’) |
to_char(int, text) | text | 把 int4/int8 转换成 string | to_char(125, ‘999’) |
to_char(float, text) | text | 把 float4/float8 转换成 string | to_char(125.8, ‘999d9’) |
to_char(numeric, text) | text | 把 numeric 转换成 string | to_char(numeric ‘-125.8’, ‘999d99s’) |
to_date(text, text) | date | 把 string 转换成 date | to_date(’05 dec 2000′, ‘dd mon yyyy’) |
to_timestamp(text, text) | date | 把 string 转换成 timestamp | to_timestamp(’05 dec 2000′, ‘dd mon yyyy’) |
to_number(text, text) | numeric | 把 string 转换成 numeric | to_number(‘12,454.8-‘, ’99g999d9s’) |
表 5-8. 用于 date/time 转换的模板
模板 | 描述 |
---|---|
hh | 一天的小时数 (01-12) |
hh12 | 一天的小时数 (01-12) |
hh24 | 一天的小时数 (00-23) |
mi | 分钟 (00-59) |
ss | 秒 (00-59) |
ssss | 午夜后的秒 (0-86399) |
am or a.m. or pm or p.m. | 正午标识(大写) |
am or a.m. or pm or p.m. | 正午标识(小写) |
y,yyy | 带逗号的年(4 和更多位) |
yyyy | 年(4和更多位) |
yyy | 年的后三位 |
yy | 年的后两位 |
y | 年的最后一位 |
bc or b.c. or ad or a.d. | 年标识(大写) |
bc or b.c. or ad or a.d. | 年标识(小写) |
month | 全长大写月份名(9字符) |
month | 全长混合大小写月份名(9字符) |
month | 全长小写月份名(9字符) |
mon | 大写缩写月份名(3字符) |
mon | 缩写混合大小写月份名(3字符) |
mon | 小写缩写月份名(3字符) |
mm | 月份 (01-12) |
day | 全长大写日期名(9字符) |
day | 全长混合大小写日期名(9字符) |
day | 全长小写日期名(9字符) |
dy | 缩写大写日期名(3字符) |
dy | 缩写混合大小写日期名(3字符) |
dy | 缩写小写日期名(3字符) |
ddd | 一年里的日子(001-366) |
dd | 一个月里的日子(01-31) |
d | 一周里的日子(1-7;sun=1) |
w | 一个月里的周数 |
ww | 一年里的周数 |
cc | 世纪(2 位) |
j | julian 日期(自公元前4712年1月1日来的日期) |
q | 季度 |
rm | 罗马数字的月份(i-xii;i=jan)-大写 |
rm | 罗马数字的月份(i-xii;i=jan)-小写 |
所有模板都都允许使用前缀和后缀修改器。模板里总是允许使用修改器。前缀 ’fx‘ 只是一个全局修改器。
表 5-9. 用于日期/时间模板 to_char() 的后缀
后缀 | 描述 | 例子 |
---|---|---|
fm | 填充模式前缀 | fmmonth |
th | 大写顺序数后缀 | ddth |
th | 小写顺序数后缀 | ddth |
fx | 固定模式全局选项(见下面) | fx month dd day |
sp | 拼写模式(还未实现) | ddsp |
用法须知:
- 如果没有使用 fx 选项,to_timestamp 和 to_date 忽略空白。fx 必须做为模板里的第一个条目声明。
- 反斜杠(”\“)必须用做双反斜杠(”\\“),例如 ‘\\hh\\mi\\ss’。
- 双引号('”‘)之间的字串被忽略并且不被分析。如果你想向输出写双引号,你必须在双引号前面放置一个双反斜杠(‘\\’),例如 ‘\\”yyyy month\\”‘。
- to_char 支持不带前导双引号('”‘)的文本,但是在双引号之间的任何字串会被迅速处理并且还保证不会被当作模板关键字解释(例如:‘”hello year: “yyyy’)。
表 5-10. 用于 to_char(numeric) 的模板
模板 | 描述 |
---|---|
9 | 带有指定位数的值 |
0 | 前导零的值 |
. (句点) | 小数点 |
, (逗号) | 分组(千)分隔符 |
pr | 尖括号内负值 |
s | 带负号的负值(使用本地化) |
l | 货币符号(使用本地化) |
d | 小数点(使用本地化) |
g | 分组分隔符(使用本地化) |
mi | 在指明的位置的负号(如果数字 < 0) |
pl | 在指明的位置的正号(如果数字 > 0) |
sg | 在指明的位置的正/负号 |
rn | 罗马数字(输入在 1 和 3999 之间) |
th or th | 转换成序数 |
v | 移动 n 位(小数)(参阅注解) |
eeee | 科学记数。现在不支持。 |
用法须知:
- 使用 ‘sg’,’pl’ 或 ‘mi’ 的带符号字并不附着在数字上面;例如,to_char(-12, ‘s9999’) 生成 ‘ -12’,而 to_char(-12, ‘mi9999’) 生成 ‘- 12’。oracle 里的实现不允许在 9 前面使用 mi,而是要求 9 在 mi 前面。
- pl,sg,和 th 是 postgres 扩展。
- 9 表明一个与在 9 字串里面的一样的数字位数。如果没有可用的数字,那么使用一个空白(空格)。
- th 不转换小于零的值,也不转换小数。th 是一个 postgres 扩展。
- v 方便地把输入值乘以 10^n,这里 n 是跟在 v 后面的数字。to_char 不支持把 v 与一个小数点绑在一起使用(例如. “99.9v99” 是不允许的)。
表 5-11. to_char 例子
输入 | 输出 |
---|---|
to_char(now(),’day, hh12:mi:ss’) | ‘tuesday , 05:39:18’ |
to_char(now(),’fmday, hh12:mi:ss’) | ‘tuesday, 05:39:18’ |
to_char(-0.1,’99.99′) | ‘ -.10’ |
to_char(-0.1,’fm9.99′) | ‘-.1’ |
to_char(0.1,’0.9′) | ‘ 0.1’ |
to_char(12,’9990999.9′) | ‘ 0012.0’ |
to_char(12,’fm9990999.9′) | ‘0012’ |
to_char(485,’999′) | ‘ 485’ |
to_char(-485,’999′) | ‘-485’ |
to_char(485,’9 9 9′) | ‘ 4 8 5’ |
to_char(1485,’9,999′) | ‘ 1,485’ |
to_char(1485,’9g999′) | ‘ 1 485’ |
to_char(148.5,’999.999′) | ‘ 148.500’ |
to_char(148.5,’999d999′) | ‘ 148,500’ |
to_char(3148.5,’9g999d999′) | ‘ 3 148,500’ |
to_char(-485,’999s’) | ‘485-‘ |
to_char(-485,’999mi’) | ‘485-‘ |
to_char(485,’999mi’) | ‘485’ |
to_char(485,’pl999′) | ‘+485’ |
to_char(485,’sg999′) | ‘+485’ |
to_char(-485,’sg999′) | ‘-485’ |
to_char(-485,’9sg99′) | ‘4-85’ |
to_char(-485,’999pr’) | ‘<485>’ |
to_char(485,’l999′) | ‘dm 485 |
to_char(485,’rn’) | ‘ cdlxxxv’ |
to_char(485,’fmrn’) | ‘cdlxxxv’ |
to_char(5.2,’fmrn’) | v |
to_char(482,’999th’) | ‘ 482nd’ |
to_char(485, ‘”good number:”999’) | ‘good number: 485’ |
to_char(485.8,'”pre-decimal:”999″ post-decimal:” .999′) | ‘pre-decimal: 485 post-decimal: .800’ |
to_char(12,’99v999′) | ‘ 12000’ |
to_char(12.4,’99v999′) | ‘ 12400’ |
to_char(12.45, ’99v9′) | ‘ 125’ |
oracle to_char函数最简单的应用:
/*1.0123—>’1.0123’*/
select to_char(1.0123) from dual
/*123—>’123’*/
select to_char(123) from dual
接下来再看看下面:
/*0.123 —> ‘.123’ */
selec to_char(0.123) from dual
上面的结果 ‘.123’ 在大多数情况下都不是我们想要的结果,我们想要的应该是 ‘0.123’。
我们来看一下to_char函数的具体用法:
to_char ( n [, fmt [, ‘nlsparam’]] )
oracle to_char函数将number类型的n按数值格式fmt转换成varchar2类型的值。’nlsparams’指定由数值格式的元素返回的字符,包括:
.小数点字符
.组分隔符
.本地钱币符号
.国际钱币符号
变元的形式为:
‘nls_numeric_characters=”dg” nls_currency=”tcxt” nls_iso_currency=territory’
其中d为小数点字符,g为组分隔符。
例 :to_char (17145,’l099g999′,’nls_numeric_characters=”.,” nls_currency=”nud”‘)=nud017,145
通过上面的了解,再查看fmt的一些格式,我们可以用以下表达式得到’0.123’的值:
/*0.123 —> ‘ 0.123’ */
select to_char(0.123,’0.999′) from dual
/*100.12 —> ‘######’ */
select to_char(100.12,’0.999′) from dual
/*1.12 —> ‘ 1.120’ */
select to_char(1.12,’0.999′) from dual
‘ 0.123’是出来了,可是前面又多了一个空格。
对于 100.12 的值却是######,以及’1.12’的值变成了 ‘1.120’。
我们重新确定一个新的需求:
1、去空格
2、小数点最多4位,最少保留2位。
1—>’1.00’;1.1—>’1.00’;1.12–>’1.12’;1.1234—>’1.1234’;
1.12345—>’1.1235′
最终实现如下:
/*
fm :除空格
9999999.0099:允许小数点左边最大正数为7位,小数点右边最少2位,最多4位,且在第5位进行四舍五入
*/
select to_char(123.0233,’fm9999999.0099′) from dual