你可能喜欢
单项选择题
A.执行部分是必须的,因此声明部分也可以放到执行部分中来
B.PL/SQL块在执行时,是统一传输给数据库服务器进行执行的
C.在PL/SQL中SELECT的语句的用法与在SQL*PLUS中完全一致
D.匿名PL/SQL块的执行效率要高于命名PL/SQL块
单项选择题
A.PL/SQL是应用于各种数据库上的通用语言
B.PL/SQL是过程化的SQL语言
C.PL/SQL是只能在SQL*PLUS中运行
D.在PL/SQL可以直接执行所有的SQL操作
单项选择题
A.v_arr arr_type;
B.v_arr is arr_type;
C.v_arr of arr_type;
D.v_arr arr_type%type;
单项选择题
A.type array arr_type[emp.ename%type] index by binary_integer;
B.type table arr_type[emp.ename%type] index by binary_integer;
C.type arr_type is table of emp.ename%type index by binary_integer;
D.type arr_type is pl_sql table of emp.ename%type index by binary_integer;
单项选择题
A.NO DATA FOUND
B.DATA_NOT_FOUND
C.NO_DATA_FOUND
D.DATA_NO_FOUND
单项选择题
A.v_namechar(60);
B.v_namestring(60);
C.v_namevarchar2(60);
D.v_namevarchar2(61);
单项选择题
A.select sal,decode(sal>3000,'A',sal>2000,'B','C') grade from emp;
B.select sal,decode(sal,3000,'A',2000,'B','C') grade from emp;
C.select sal,(case when sal>3000 then 'A' when sal>2000 then 'B' else 'C' end) grade from emp;
D.select sal,(if sal>3000 then 'A' elsif sal>2000 then 'B' else 'C' end if) grade from emp;