首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

pL/sql存储过程简单编写有关问题

2013-10-18 
pL/sql存储过程简单编写问题--创建create or replace procedure p1 asbegindbms_output.put_line(hello?w

pL/sql存储过程简单编写问题
--创建
create or replace procedure p1 as
begin
dbms_output.put_line('hello?world!?this?is?the?first?procedure');??
end p1;

--执行
begin
p1;
end;
或者
exec p1

创建是可以的,为什么不能在pl/sql里执行 pL/sql 存储过程
[解决办法]
应该可以的啊,你怎么判断不能执行的?

热点排行
Bad Request.