⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 afiedt.buf

📁 codding for pszone one can use it at playstation zones
💻 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 + -