第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

為什么這段 代碼執(zhí)行會報錯呢


在行: 2 上開始執(zhí)行命令時出錯 -

declare?

? ? cursor cdept is select dno,dname from dep;

? ? ? ? pdno dep.dno%type;

? ? ? ? pdname dep.dname%type;

? ? cursor cgrade(coursename varchar2,depno number)

? ? ? ? ? ? ? ? is? select grade from sc where cno=(select cno from course where cname=coursename)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and sno in (select sno from student where dno=depno);

? ? ? ? pgrade sc.grade%type;

? ? ? ? count1 number;?

? ? ? ? count2 number;?

? ? ? ? count3 number;

? ? ? ? avggrade number;

? ? ? ? pcourseName VARCHAR2(3):='大學(xué)物理';

begin

? ? open cdept;

? ? loop

? ? ? ? ? ? fetch cdept into pdno,pdname;

? ? ? ? ? ? exit when cdept%notfound;

? ? ? ? ? ? count1:=0; count2:=0; count3:=0;?

? ? ? ? ? ? select avg(grade) into avggrade from sc where cno=(select cno from course where cname=pcourseName)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?and sno in (select sno from student where dno=pdno);

? ? ? ? ? ? open cgrade(pcourseName,pdno);

? ? ? ? ? ? loop

? ? ? ? ? ? ? ? fetch cgrade into pgrade;

? ? ? ? ? ? ? ? exit when cgrade%notfound;

? ? ? ? ? ? ? ? if pgrade <60 then count1:= count1+1;

? ? ? ? ? ? ? ? elsif pgrade >60 and pgrade <85 then count2:=count2+1;

? ? ? ? ? ? ? ? else count3:=count3+1;

? ? ? ? ? ? ? ? end if;

? ? ? ? ? ? end loop;

? ? ? ? ? ? close cgrade;

? ? ? ? ? ? insert into msg1 values (pcourseName,pdname,count1,count2,count3,avggrade);

? ? end loop;


? ? close cdept;

? ? commit;

? ? DBMS_OUTPUT.PUT_LINE('統(tǒng)計完成');

end;

錯誤報告 -

ORA-06502: PL/SQL: 數(shù)字或值錯誤 :? 字符串緩沖區(qū)太小

ORA-06512: 在 line 13

06502. 00000 -? "PL/SQL: numeric or value error%s"

*Cause:? ? An arithmetic, numeric, string, conversion, or constraint error

? ? ? ? ? ?occurred. For example, this error occurs if an attempt is made to

? ? ? ? ? ?assign the value NULL to a variable declared NOT NULL, or if an

? ? ? ? ? ?attempt is made to assign an integer larger than 99 to a variable

? ? ? ? ? ?declared NUMBER(2).

*Action:? ?Change the data, how it is manipulated, or how it is declared so

? ? ? ? ? ?that values do not violate constraints.


在行: 2 上開始執(zhí)行命令時出錯 -

declare?

? ? cursor cdept is select dno,dname from dep;

? ? ? ? pdno dep.dno%type;

? ? ? ? pdname dep.dname%type;

? ? cursor cgrade(coursename varchar2,depno number)

? ? ? ? ? ? ? ? is? select grade from sc where cno=(select cno from course where cname=coursename)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and sno in (select sno from student where dno=depno);

? ? ? ? pgrade sc.grade%type;

? ? ? ? count1 number;?

? ? ? ? count2 number;?

? ? ? ? count3 number;

? ? ? ? avggrade number;

? ? ? ? pcourseName VARCHAR2:='大學(xué)物理';

begin

? ? open cdept;

? ? loop

? ? ? ? ? ? fetch cdept into pdno,pdname;

? ? ? ? ? ? exit when cdept%notfound;

? ? ? ? ? ? count1:=0; count2:=0; count3:=0;?

? ? ? ? ? ? select avg(grade) into avggrade from sc where cno=(select cno from course where cname=pcourseName)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?and sno in (select sno from student where dno=pdno);

? ? ? ? ? ? open cgrade(pcourseName,pdno);

? ? ? ? ? ? loop

? ? ? ? ? ? ? ? fetch cgrade into pgrade;

? ? ? ? ? ? ? ? exit when cgrade%notfound;

? ? ? ? ? ? ? ? if pgrade <60 then count1:= count1+1;

? ? ? ? ? ? ? ? elsif pgrade >60 and pgrade <85 then count2:=count2+1;

? ? ? ? ? ? ? ? else count3:=count3+1;

? ? ? ? ? ? ? ? end if;

? ? ? ? ? ? end loop;

? ? ? ? ? ? close cgrade;

? ? ? ? ? ? insert into msg1 values (pcourseName,pdname,count1,count2,count3,avggrade);

? ? end loop;


? ? close cdept;

? ? commit;

? ? DBMS_OUTPUT.PUT_LINE('統(tǒng)計完成');

end;

錯誤報告 -

ORA-06550: 第 13 行, 第 21 列:?

PLS-00215: 字符串長度限制在范圍 (1...32767)

06550. 00000 -? "line %s, column %s:\n%s"

*Cause:? ? Usually a PL/SQL compilation error.

*Action:


在行: 2 上開始執(zhí)行命令時出錯 -

declare?

? ? cursor cdept is select dno,dname from dep;

? ? ? ? pdno dep.dno%type;

? ? ? ? pdname dep.dname%type;

? ? cursor cgrade(coursename varchar2,depno number)

? ? ? ? ? ? ? ? is? select grade from sc where cno=(select cno from course where cname=coursename)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and sno in (select sno from student where dno=depno);

? ? ? ? pgrade sc.grade%type;

? ? ? ? count1 number;?

? ? ? ? count2 number;?

? ? ? ? count3 number;

? ? ? ? avggrade number;

? ? ? ? pcourseName VARCHAR2:='大學(xué)物理';

begin

? ? open cdept;

? ? loop

? ? ? ? ? ? fetch cdept into pdno,pdname;

? ? ? ? ? ? exit when cdept%notfound;

? ? ? ? ? ? count1:=0; count2:=0; count3:=0;?

? ? ? ? ? ? select avg(grade) into avggrade from sc where cno=(select cno from course where cname=pcourseName)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?and sno in (select sno from student where dno=pdno);

? ? ? ? ? ? open cgrade(pcourseName,pdno);

? ? ? ? ? ? loop

? ? ? ? ? ? ? ? fetch cgrade into pgrade;

? ? ? ? ? ? ? ? exit when cgrade%notfound;

? ? ? ? ? ? ? ? if pgrade <60 then count1:= count1+1;

? ? ? ? ? ? ? ? elsif pgrade >60 and pgrade <85 then count2:=count2+1;

? ? ? ? ? ? ? ? else count3:=count3+1;

? ? ? ? ? ? ? ? end if;

? ? ? ? ? ? end loop;

? ? ? ? ? ? close cgrade;

? ? ? ? ? ? insert into msg1 values (pcourseName,pdname,count1,count2,count3,avggrade(20));

? ? end loop;


? ? close cdept;

? ? commit;

? ? DBMS_OUTPUT.PUT_LINE('統(tǒng)計完成');

end;

錯誤報告 -

ORA-06550: 第 13 行, 第 21 列:?

PLS-00215: 字符串長度限制在范圍 (1...32767)

ORA-06550: 第 32 行, 第 78 列:?

PLS-00222: 在此范圍中不存在名為 'AVGGRADE' 的函數(shù)

ORA-06550: 第 32 行, 第 78 列:?

PL/SQL: ORA-00904: : 標識符無效

ORA-06550: 第 32 行, 第 13 列:?

PL/SQL: SQL Statement ignored

06550. 00000 -? "line %s, column %s:\n%s"

*Cause:? ? Usually a PL/SQL compilation error.

*Action:


在行: 2 上開始執(zhí)行命令時出錯 -

declare?

? ? cursor cdept is select dno,dname from dep;

? ? ? ? pdno dep.dno%type;

? ? ? ? pdname dep.dname%type;

? ? cursor cgrade(coursename varchar2,depno number)

? ? ? ? ? ? ? ? is? select grade from sc where cno=(select cno from course where cname=coursename)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and sno in (select sno from student where dno=depno);

? ? ? ? pgrade sc.grade%type;

? ? ? ? count1 number;?

? ? ? ? count2 number;?

? ? ? ? count3 number;

? ? ? ? avggrade number;

? ? ? ? pcourseName VARCHAR2:='大學(xué)物理';

begin

? ? open cdept;

? ? loop

? ? ? ? ? ? fetch cdept into pdno,pdname;

? ? ? ? ? ? exit when cdept%notfound;

? ? ? ? ? ? count1:=0; count2:=0; count3:=0;?

? ? ? ? ? ? select avg(grade) into avggrade from sc where cno=(select cno from course where cname=pcourseName)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?and sno in (select sno from student where dno=pdno);

? ? ? ? ? ? open cgrade(pcourseName,pdno);

? ? ? ? ? ? loop

? ? ? ? ? ? ? ? fetch cgrade into pgrade;

? ? ? ? ? ? ? ? exit when cgrade%notfound;

? ? ? ? ? ? ? ? if pgrade <60 then count1:= count1+1;

? ? ? ? ? ? ? ? elsif pgrade >60 and pgrade <85 then count2:=count2+1;

? ? ? ? ? ? ? ? else count3:=count3+1;

? ? ? ? ? ? ? ? end if;

? ? ? ? ? ? end loop;

? ? ? ? ? ? close cgrade;

? ? ? ? ? ? insert into msg1 values (pcourseName,pdname,count1,count2,count3,avggrade);

? ? end loop;


? ? close cdept;

? ? commit;

? ? DBMS_OUTPUT.PUT_LINE('統(tǒng)計完成');

end;

錯誤報告 -

ORA-06550: 第 13 行, 第 21 列:?

PLS-00215: 字符串長度限制在范圍 (1...32767)

06550. 00000 -? "line %s, column %s:\n%s"

*Cause:? ? Usually a PL/SQL compilation error.

*Action:


在行: 14 上開始執(zhí)行命令時出錯 -

pcourseName

錯誤報告 -

未知的命令



在行: 2 上開始執(zhí)行命令時出錯 -

declare?

? ? cursor cdept is select dno,dname from dep;

? ? ? ? pdno dep.dno%type;

? ? ? ? pdname dep.dname%type;

? ? cursor cgrade(coursename varchar2,depno number)

? ? ? ? ? ? ? ? is? select grade from sc where cno=(select cno from course where cname=coursename)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and sno in (select sno from student where dno=depno);

? ? ? ? pgrade sc.grade%type;

? ? ? ? count1 number;?

? ? ? ? count2 number;?

? ? ? ? count3 number;

? ? ? ? avggrade number;

? ? ? ? pcourseName varchar2 := '大學(xué)物理';

begin

? ? open cdept;

? ? loop

? ? ? ? ? ? fetch cdept into pdno,pdname;

? ? ? ? ? ? exit when cdept%notfound;

? ? ? ? ? ? count1:=0; count2:=0; count3:=0;?

? ? ? ? ? ? select avg(grade) into avggrade from sc where cno=(select cno from course where cname=pcourseName)

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?and sno in (select sno from student where dno=pdno);

? ? ? ? ? ? open cgrade(pcourseName,pdno);

? ? ? ? ? ? loop

? ? ? ? ? ? ? ? fetch cgrade into pgrade;

? ? ? ? ? ? ? ? exit when cgrade%notfound;

? ? ? ? ? ? ? ? if pgrade <60 then count1:= count1+1;

? ? ? ? ? ? ? ? elsif pgrade >60 and pgrade <85 then count2:=count2+1;

? ? ? ? ? ? ? ? else count3:=count3+1;

? ? ? ? ? ? ? ? end if;

? ? ? ? ? ? end loop;

? ? ? ? ? ? close cgrade;

? ? ? ? ? ? insert into msg1 values (pcourseName,pdname,count1,count2,count3,avggrade);

? ? end loop;


? ? close cdept;

? ? commit;

? ? DBMS_OUTPUT.PUT_LINE('統(tǒng)計完成');

end;

錯誤報告 -

ORA-06550: 第 13 行, 第 21 列:?

PLS-00215: 字符串長度限制在范圍 (1...32767)

06550. 00000 -? "line %s, column %s:\n%s"

*Cause:? ? Usually a PL/SQL compilation error.

*Action:


正在回答

1 回答

錯誤報告 -

ORA-06550: 第 13 行, 第 21 列:?

PLS-00215: 字符串長度限制在范圍 (1...32767)

06550. 00000 -? "line %s, column %s:\n%s"

*Cause:? ? Usually a PL/SQL compilation error.

*Action:


0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

WestBrook_wyf

pcourseName VARCHAR2(20):='大學(xué)物理'; 在Oracle中執(zhí)行存儲過程時,輸出參數(shù)的長度要與原表中字段長度一致! 在剛開始創(chuàng)建msg1表的時候,我們的coursename就是varchar2(20).
2018-10-09 回復(fù) 有任何疑惑可以回復(fù)我~

舉報

0/150
提交
取消

為什么這段 代碼執(zhí)行會報錯呢

我要回答 關(guān)注問題
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號