永发信息网

oracle 存储过程创建 编译错误

答案:1  悬赏:30  手机版
解决时间 2021-07-26 10:59
  • 提问者网友:且恨且铭记
  • 2021-07-25 19:15

create or replace procedure scott.tempprocedure as
tempdate scott.emp hiredate%type;
begin
select hiredate into tempdate
from scott.emp
where scott.emp.sal=1500;
dbms_output.put_line('8888'||tempdate);
end;

提示错误:创建过程带有编译失败。

把as 改为 is 还是一样的错误。

最佳答案
  • 五星知识达人网友:十年萤火照君眠
  • 2021-07-25 20:20
tempdate scott.emp hiredate%type; ==> tempdate scott.emp.hiredate%type; (第二行应该是这样,前面的少了个“.”号)
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯