Oracle数据库实用函数(2)

padded_length 表示:字符的长度,是返回的字符串的数量,如果这个数量比原字符串的长度要短,rpad函数将会把字符串截取成从左到右的n个字符;   

pad_string 是个可选参数,这个字符串是要粘贴到string的右边,如果这个参数未写,lpad函数将会在string的右边粘贴空格。   

例如:  

rpad('tech', 7); 将返回'tech '   

rpad('tech', 2); 将返回'te'   

rpad('tech', 8, '0'); 将返回'tech0000'  

rpad('tech on the net', 15, 'z'); 将返回 'tech onthe net'   

rpad('tech on the net', 16, 'z'); 将返回 'tech onthe netz'

TRUNC

TRUNC函数返回以指定元素格式截去一部分的日期值。

--Oracle trunc()函数的用法
/**************
日期********************/
1.select trunc(sysdate) from dual --2011-3-18 今天的日期为2011-3-18
2.select trunc(sysdate, 'mm') from dual --2011-3-1 返回当月第一天.
3.select trunc(sysdate,'yy') from dual --2011-1-1 返回当年第一天
4.select trunc(sysdate,'dd') from dual --2011-3-18 返回当前年月日
5.select trunc(sysdate,'yyyy') from dual --2011-1-1 返回当年第一天
6.select trunc(sysdate,'d') from dual --2011-3-13 (星期天)返回当前星期的第一天
7.select trunc(sysdate, 'hh') from dual --2011-3-18 14:00:00 当前时间为14:41
8.select trunc(sysdate, 'mi') from dual --2011-3-18 14:41:00 TRUNC()函数没有秒的精确
/***************
数字********************/
/*
TRUNC
number,num_digits
Number
需要截尾取整的数字。
Num_digits
用于指定取整精度的数字。Num_digits的默认值为 0
TRUNC()
函数截取时不进行四舍五入
*/
9.select trunc(123.458) from dual--123
10.select trunc(123.458,0) from dual--123
11.select trunc(123.458,1) from dual --123.4
12.select trunc(123.458,-1) from dual--120
13.select trunc(123.458,-4) from dual--0
14.select trunc(123.458,4) from dual --123.458
15.select trunc(123) from dual --123
16.select trunc(123,1) from dual--123
17.select trunc(123,-1) from dual--120

一下语句会经常用到,相当于不用创建表而可以插入几条数据

Select ‘Jan’ membername,’1’ name from dual union select ‘Feb’ membername,’2’ name from dual;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/aa5f03dfc2136d645b5a609af32e60c8.html