2012年2月27日
摘要: 一、变量介绍在编写pl/sql程序时,可以定义变量和常量;在pl/sql程序中包括有:1)、标量类型(scalar)2)、复合类型(composite) --用于操作单条记录3)、参照类型(reference) --用于操作多条记录4)、lob(large object)二、标量(scalar)——常用类型1)、在编写pl/sql块时,如果要使用变量,需在定义部分定义变量。pl/sql中定义变量和常量的语法如下:identifier [constant] datatype [not null] [:=| default expr]identifier: 名称constant:指定常量。需要指定 阅读全文
posted @ 2012-02-27 16:26 Ruthless 阅读(6229) 评论(0) 推荐(2)