oracle 存储过程

DBMS_OUTPUT.PUT_LINE();变量用||拼接

创建变量

定义
name type
赋值
name:='zz'
定义并赋值
name type:='xx'
插入
select into name from dual;

引用类型
name tablename.column%TYPE
记录变量
变量名 表明%rowtype

判断

if con then
elsif con the n

end if

游标

cursor name is 查询语句

你可能感兴趣的:(oracle 存储过程)