求知 文章 文库 Lib 视频 iPerson 课程 认证 咨询 工具 讲座 Model Center   Code  
会员   
 
 
     
   
    全部     工程实例     标准规范     名校讲义     知识库    
 
 

PL/SQL教程
PL/SQL环境安装设置
PL/SQL基本语法
PL/SQL数据类型
PL/SQL变量
PL/SQL常量和文字
PL/SQL运算符
PL/SQL条件控制
PL/SQL循环
PL/SQL字符串
PL/SQL数组
PL/SQL过程
 
 

PL/SQL字符串

    您可以捐助,支持我们的公益事业。

金额: 1元 10元 50元

姓名:

邮件:

电话:

公司:

说明:

认证码: 验证码,看不清楚?请点击刷新验证码 必填



 
 捐助

PL/SQL字符串实际上是一个可选的尺寸规格字符序列。字符可以是数字,字母,空白,特殊字符或全部的组合。 PL/SQL提供了三种类型的字符串:

  • 固定长度字符串:在这样的字符串,程序员指定的长度,同时声明该字符串。该字符串是右填充空格以达到指定的长度。
  • 变长字符串:在这样的字符串,最大长度可达32,767,为字符串指定,并不需要填充。
  • 字符大对象(CLOB):这是可变长度的字符串,可以达到128兆兆字节。

PL/ SQL字符串可以是变量或字面值。字符串文字被引号围在内部。例如,

'This is a string literal. yiibai.com' Or 'hello world'

包括在字符串中单引号的文字,需要输入两个单引号彼此相邻,如:

'this isn''t what it looks like'

声明字符串变量

Oracle数据库提供了大量的字符串数据类型,如:CHAR,NCHAR,VARCHAR2,NVARCHAR2,CLOB和NCLOB。前面加上一个'N'的数据类型为“国家字符集”数据类型,即存储Unicode字符数据。

如果需要声明一个可变长度的字符串时,必须提供该字符串的最大长度。例如,VARCHAR2数据类型。下面的例子说明了声明和使用一些字符串变量:

DECLARE
name varchar2(20);
company varchar2(30);
introduction clob;
choice char(1);
BEGIN
name := 'John Smith';
company := 'Infotech';
introduction := ' Hello! I''m John Smith from Infotech.';
choice := 'y';
IF choice = 'y' THEN
dbms_output.put_line(name);
dbms_output.put_line(company);
dbms_output.put_line(introduction);
END IF;
END;
/

当上述代码在SQL提示符执行时,它产生了以下结果:

DJohn Smith
Infotech Corporation
Hello! I'm John Smith from Infotech.

PL/SQL procedure successfully completed

要声明一个固定长度的字符串,使用CHAR数据类型。在这里不必指定一个最大长度为固定长度的变量。如果超过了限制的长度,Oracle数据库会自动使用所需的最大长度。所以,下面的两个声明下面是相同的:

red_flag CHAR(1) := 'Y';
red_flag CHAR := 'Y';

PL/SQL字符串函数和操作符

PL/ SQL提供了连接运算符(||)用于连接两个字符串。下表提供了用PL / SQL提供的字符串功能(函数):

以下实施例说明了一些上述函数和它们的用途:

示例1

DECLARE
greetings varchar2(11) := 'hello world';
BEGIN
dbms_output.put_line(UPPER(greetings));

dbms_output.put_line(LOWER(greetings));

dbms_output.put_line(INITCAP(greetings));

/* retrieve the first character in the string */
dbms_output.put_line ( SUBSTR (greetings, 1, 1));

/* retrieve the last character in the string */
dbms_output.put_line ( SUBSTR (greetings, -1, 1));

/* retrieve five characters,
starting from the seventh position. */
dbms_output.put_line ( SUBSTR (greetings, 7, 5));

/* retrieve the remainder of the string,
starting from the second position. */
dbms_output.put_line ( SUBSTR (greetings, 2));

/* find the location of the first "e" */
dbms_output.put_line ( INSTR (greetings, 'e'));
END;
/

当上述代码在SQL提示符执行时,它产生了以下结果:

HELLO WORLD
hello world
Hello World
h
d
World
ello World
2

PL/SQL procedure successfully completed.

示例2

DECLARE
greetings varchar2(30) := '......Hello World.....';
BEGIN
dbms_output.put_line(RTRIM(greetings,'.'));
dbms_output.put_line(LTRIM(greetings, '.'));
dbms_output.put_line(TRIM( '.' from greetings));
END;
/

当上述代码在SQL提示符执行时,它产生了以下结果:

......Hello World 
Hello World.....
Hello World

PL/SQL procedure successfully completed.


/

    您可以捐助,支持我们的公益事业。

金额: 1元 10元 50元

姓名:

邮件:

电话:

公司:

说明:

认证码: 验证码,看不清楚?请点击刷新验证码 必填



 
 捐助