码迷,mamicode.com
首页 > 数据库 > 详细

PLSQL note

时间:2016-12-28 19:03:30      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:str   count   from   select   note   har   string   0.00   int   

sql%count 最近一次sql执行的件数
SUBSTR(string , int i) // i番目から最後までの文字列を切り取る
SUBSTR(string , int i, int j) // i番目からj文二の文字列を切り取る
NVL(para, string) // paraはnullであれば、string を戻る
FLOOR( i) // iより小さく、一番大きい整数を戻る
CEIL(i) // iより大きく、一番小さい整数を戻る
ROUND(i) // 四捨五入
TO_CHAR() //
select to_char(123456789, ‘999G999G999‘) from dual; => 123,456,789
select to_char(123456.789, ‘999G999D999‘) from dual; => 123,456.789
select to_char(1234567.789, ‘L999G999G999D999‘) from dual; => \1,234,567.789
select to_char(12.0001, ‘FM90.00‘) from dual; => 12.00
select to_char(‘02.100‘,‘FM90.000‘) from dual; => 2.100
select to_char(‘0020.100‘,‘FM9999.999‘) from dual; => 20.1
select to_char(‘0020.100‘,‘FM0000.000‘) from dual; => 0020.100

PLSQL note

标签:str   count   from   select   note   har   string   0.00   int   

原文地址:http://www.cnblogs.com/wszym111/p/6230030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!