📄 afiedt.buf
字号:
declare
cursor c1 is
select max(total),min(total) from mvpstudent;
c_maxtot mvpstudent.total%type;
c_mintot mvpstudent.total%type;
begin
open c1;
fetch c1 into c_maxtot,c_mintot;
dbms_output.put_line('the maximum total is '||c_maxtot);
dbms_output.put_line('the minimum total is '||c_mintot);
close c1;
end;
/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -