oracle存储过程else
Ⅰ oracle存储过程中写IF ELES
if 条件 then
语句
elsif 条件 then
语句
else
语句
end if;
Ⅱ Oracle数据库的存储过程怎么写
1 CREATE OR REPLACE PROCEDURE 存储过程名
2 IS
3 BEGIN
4 NULL;
5 END;
行1:
CREATE OR REPLACE PROCEDURE 是一个sql语句通知Oracle数据库去创建一个叫做skeleton存储过程, 如果存在就覆盖它;
行2:
IS关键词表明后面将跟随一个PL/SQL体。
行3:
BEGIN关键词表明PL/SQL体的开始。
行4:
NULL PL/SQL语句表明什么事都不做,这句不能删去,因为PL/SQL体中至少需要有一句;
行5:
END关键词表明PL/SQL体的结束.
存储过程创建语法:
create or replace procere 存储过程名(param1 in type,param2 out type)
as
变量1 类型(值范围); --vs_msgVARCHAR2(4000);
变量2 类型(值范围);
Begin
Select count(*) into 变量1 from 表A where列名=param1;
If (判断条件) then
Select 列名 into 变量2 from 表A where列名=param1;
Dbms_output。Put_line(‘打印信息’);
Elsif (判断条件) then
Dbms_output。Put_line(‘打印信息’);
Else
Raise 异常名(NO_DATA_FOUND);
End if;
Exception
When others then
Rollback;
End;
Ⅲ oracle存储过程如何输出信息
可用DBMS_OUTPUT.PUT_LINE()对存储过程的进行输出。
编写存储过程:
create or replace procere test_pro(in_num number)
as
M number;
begin
M := in_num;
if 0 < M then
dbms_output.put_line('输出SQL语句1');
elsif M < 3 then
dbms_output.put_line('输出SQL语句2');
else
dbms_output.put_line('nothing');
end if;
end;
(3)oracle存储过程else扩展阅读;
存储在数据库的数据字典中,存储在当前的应用中安全性由数据库提供安全保证,必须通过授权才能使用存储子程序,安全性靠应用程序来保证,如果能执行应用程序,就能执行该子程序。模式描述IN参数用来从调用环境中向存储过程传递值,不能给IN参数赋值,给此参数传递的值可以是常量、有值的变量、表达式等。
Ⅳ oracle 存储过程
create or replace procere sp_add_emp2( --创建名为sp_add_emp2存储过程
v_empno emp.empno%type, --------- 传入存储过程中的参数
v_ename emp.ename%type,
v_deptno dept.deptno%type,
v_dname dept.dname%type,
num out number ----------存储过程执行完毕后返回的值
)as
num1 number; ------自定义变量
num2 number;
begin
--查询dept表中的数据总共有多少行,赋值给num1,
--条件是字段deptno等于v_deptno(传进来的参数)
select count(*) into num1 from dept where deptno=v_deptno;
if(num1=0) then --如果没数据
--则给dept表的deptno 和dname列插入一条数据,值为v_deptno,v_dname
insert into dept(deptno,dname) values(v_deptno,v_dname);
end if; --If语句结束语
---同上。
select count(*) into num2 from emp where empno=v_empno;
if(num2=0)then
insert into emp(empno,ename,deptno) values(v_empno,v_ename,v_deptno);
else --如果查询到有数据则提示错误信息,员工ID重复,不插入数据
raise_application_error(-202021,'员工id 重复!!!');
end if;
num:=num1; --定义的输出参数等于num1。
commit; --结束存储过程。
Ⅳ oracle 存储过程里的if else
ifS_date=4then
p_temp();
elsifS_date!=4then
p_temp2();
endif;
Ⅵ oracle中存储过程可以使用else吗
存储过程好像没有限制不能使用else,只要满足PL/SQL语法就好了。
Ⅶ oracle存储过程技术怎么就那么不规范if else if 再多个else if就不能用了
按照下列语句改一下试一下:
if title_b is not null and title_b != ' ' and title_s is not null and
title_s != ' ' then
title := '从' || dqmc || '所辖县级子公司四个维度2014年上半年平均得分来看,' || title_b ||
'维度管理水平较2013年上半年有所提升,' || title_s || '维度管理水平较2013年上半年有所下降。';
else
if title_b is not null and title_b != ' ' then
title := '从' || dqmc || '所辖县级子公司四个维度2014年上半年平均得分来看,' || title_b ||
'维度管理水平较2013年上半年有所提升。';
else 注释部分
if title_s is not null and title_s != ' ' then
title := '从' || dqmc || '局所辖县级子公司四个维度2014年上半年平均得分来看,' || title_s ||
'维度管理水平较2013年上半年有所下降。';
end if;
end if;
看一看行不行。
Ⅷ ORACLE存储过程中的ELSE IF语句怎么写,我这样写为何报错
楼主您好
是oracle存储过程的else if的格式是ELSIF 注意哦
Ⅸ Oracle 存储过程IF ELSE 老提示 DROP TABLE 时有错
存储过程里面不能直接写DDL
then
excute immediate “DROP TABLE SJKPROBHCR”;
Else
Ⅹ oracle 数据库中存储过程输出情况
1、编写存储过程,
create or replace procere test_pro(in_num number)
as
M number;
begin
M := in_num;
if 0 < M then
dbms_output.put_line('输出SQL语句1');
elsif M < 3 then
dbms_output.put_line('输出SQL语句2');
else
dbms_output.put_line('nothing');
end if;
end;