已采纳回答 / inverted_demon
set serveroutput ondeclarecursor guangbiao01 is select to_char(hiredate,'yyyy') FROM emp;hiredata VARCHAR2(4);a80 number:=0;a81 number:=0;a82 number:=0;a87 number:=0;beginopen guangbiao01;LOOPfetch guangbiao01 INTO hiredata;EXIT when guangbiao01%notfound...
2016-04-05
已采纳回答 / Lifing
1.检查哪些表的外键引用了要删除的表的唯一/主键. select A.* from user_constraints A, user_constraints B WHERE b.table_name = 'MYTEST' and a.constraint_type = 'R' and a.r_constraint_name = b.constraint_name;2.生成所有引用要删除表的外键的创建语句. select 'select...
2016-03-21
已采纳回答 / 夕阳朝阳
计数器只初始化一次,光标是一个集合。在loop循环里边,每次循环取出一条记录,比如第一次循环,取出的记录是1980年的,那么count1就+1(由于count1初始值为0,所以此时count1的值1),然后就执行下一次循环(执行了if就不执行elsif和else了),第二次循环如果取出的还是1980年的,那count1就+1(此时count1的值为2).其它的计数器就不加。以此类推,一共循环14次。循环结束后,四个计数器都有值了
2016-03-17
已采纳回答 / hyc2143
declare --说明部分 a varchar2(100) :='hello world'; begin DBMS_OUTPUT.PUT_LINE(a);end;<...图片...>
2015-08-09
已采纳回答 / 好帮手慕珊
写错了,应该是:alter system set open_cursors=400 scope=both;open_cursors不是open_cursor
2015-04-22