oracle里这种declare语句块叫什么家伙?
declareagenumber(4);beginselectteaAgeintoagefromteacherwhereteaid=122;ifage>24thendbm...
declare
age number(4);
begin
select teaAge into age from teacher where teaid = 122;
if age>24 then
dbms_output.put_line('da');
else
dbms_output.put_line('xiao');
end if;
end; 展开
age number(4);
begin
select teaAge into age from teacher where teaid = 122;
if age>24 then
dbms_output.put_line('da');
else
dbms_output.put_line('xiao');
end if;
end; 展开
5个回答
推荐于2017-05-16
展开全部
使用declare或begin关键字开头的叫匿名块,每次使用均需要进行编译,不能存储在数据库中且不能被其他PL/SQL调用。而你所谓的存储过程,存储函数,触发器等叫命名块,一经编译后面就可直接调用,且可以存储在数据库中,被其他PL/SQL 调用。不知你要的是不是这个答案
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2018-02-12
展开全部
declare
age number(4);--声明一个参数 a 类型为 number类型 长度为4
begin
select teaAge into age from teacher where teaid = 122; --查询 teaid为122的teaAge 把teaAge的值放到age中
if age>24 then --当age的值大于24
dbms_output.put_line('da'); --就在控制台输出da dbms_output 是一个系统包 调用了包里面的put_line函数
else
dbms_output.put_line('xiao');--如果小于24 输出 xiao
end if;--结束if语句
end; --结束这个程序
age number(4);--声明一个参数 a 类型为 number类型 长度为4
begin
select teaAge into age from teacher where teaid = 122; --查询 teaid为122的teaAge 把teaAge的值放到age中
if age>24 then --当age的值大于24
dbms_output.put_line('da'); --就在控制台输出da dbms_output 是一个系统包 调用了包里面的put_line函数
else
dbms_output.put_line('xiao');--如果小于24 输出 xiao
end if;--结束if语句
end; --结束这个程序
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-05
展开全部
语句块,定义参数age number(4);,根据查询出来的结果,运行相关的包dbms_output的函数put_line
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-05
展开全部
declare声明的意思,定义变量用的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询