PLSQL note

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

时间: 2024-10-20 08:59:26

PLSQL note的相关文章

PLSQL NOTE --------like 与转义字符

SQL> create table test 2 (id integer, 3 name varchar2(90)); Table created. SQL> insert into test values(100,'aassdd'); 1 row created. SQL> insert into test values(120,null); 1 row created. SQL> insert into test values(110,'aa_see'); 1 row crea

Report_报表以PLSQL实现HTML标记实现(案例)

2014-05-31 BaoXinjian 一. 摘要 Oracle Report Builder开发的字符模式的报表,成为系统报表 优点 采用图形化的开发方式,比较直观 有功能强大的向导 对比较复杂格式的报表也不要通过太多代码来实现 最终结果以一个独立的文件的形式展示,比较容易传递 缺点 很难转成execel格式文件 虽然有布局编辑器,但是实际编写过程中,其宽度和位置的拖动比较繁琐 通过在数据库中直接产生HTML格式的文件,成为HMTL报表 优点 输出的文件,可以直接另存为execel或者wo

Oracle/PLSQL: LENGTH Function-from cyber

Oracle/PLSQL: LENGTH Function This Oracle tutorial explains how to use the Oracle/PLSQL LENGTH function with syntax and examples. Description The Oracle/PLSQL LENGTH function returns the length of the specified string. Syntax The syntax for the LENGT

plsql 登录后,提示数据库字符集(AL32UTF8)和客户端字符集(ZHS16GBK)不一致,PL/SQL database character set(AL32UTF8) and Client character set(ZHS16GBK) are different

原文网址:http://blog.163.com/magicc_love/blog/static/18585366220123111128283/ 启动PL/SQL Developer 报字符编码不一致错误 Database character set (AL32UTF8) and Client character set (ZHS16GBK) are different.Character set conversion may cause unexpected results. Note: y

设置PLSQL启动自动登录指定数据库

设置PLSQL启动自动登录数据库 在做公司的项目中,有多个测试环境,在deubg问题时经常要连不同的数据库.虽然PLSQL可以保存登录用户名和密码,但是每次选择的时候在一排数据库中选择的时候很容易看花眼,就想有没有什么便捷的方法可以直接登录数据库. 在看PLSQL的帮助文档时,发现33.4有这么一段话: userid Every time you start PL/SQL Developer, it will prompt you for at least the password. To av

383.判断一个字符串是否能够包含另外一个字符串 Ransom Note

Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false. Each letter in the

thinking in java ----reading note (1)

# thinking in java 4th# reading note# victor# 2016.02.10 chapter 1 对象入门 1.1 抽象的进步    (1) 所有东西都是对象.    (2) 程序是一大堆对象的组合,对象间通过消息联系.    (3) 通过封装现有对象,可制作出新型对象.    (4) 每个对象都有一种类型(某个类的实例).    (5) 同一类的所有对象都能接受相同的消息.    1.2 对象的接口 & 1.3 实现方法的隐藏     接口规定了可对一个特定

plsql的环境与介绍:环境的搭建和plsql的简单介绍

PLSQL编程 1.环境的搭建 (1)创建一个存储表空间 SQL> conn /as sysdbaConnected. SQL> create tablespace plsql datafile '/u01/oracle/oradata/ORCL/plsql01.dbf' size 1G; Tablespace created. (2)创建PLSQL用户SQL> create user plsql identified by plsql default tablespace plsql;

plsql游标的介绍

3. 游标的介绍    游标:一个指向保存多行SQL查询结果集的工作区的句柄(指针) 3.1 显式游标 (1)显式游标的使用 案例1:定义变量的方式使用游标 declare  cursor csr_org is select h.hrc_descr,o.org_short_name                      from org_tab o,hrc_tab h                     where o.hrc_code=h.hrc_code