掌握视图 函数 游标的使用
1条回答 默认 最新
- 红尘摆渡803 2021-11-03 09:02关注
表明 :scores 字段:no,name,sex,birthday,major,score
1.
create view vw_score as
select no,name,sex,birthday,major,score from scores;
2.
create or replace function jiecheng(a number) return number is
b number:=1;
begin
for i in 1..a loop
b:=b*i;
end loop;
return b;
exception
when others then
dbms_output.put_line("程序运行错误!");
end jiecheng;
3.
declare
a number;
begin
select max(score) into a from scores;
dbms_output.put('name '||'score '||'最高成绩'||chr(10));
for i in (select name,score from scores where score<> (select max(score) from scores) ) loop
dbms_output.put(i.name||' '||i.score||' '||a||chr(10));
end loop;
dbms_output.put_line('');
end;本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报