A.v_row emp%type;
B.v_row emp%record;
C.v_row emp%tabletype;
D.v_row emp%rowtype;
第1题:
定义变量时如不指定类型,该变量为( )变量。
A、 Integer
B、 String
C、 Variant
D、 Single
第2题:
执行语句Dim X,Y As Integer后,______。
A.X和Y均被定义为整型变量
B.X和Y均被定义为变体类型变量
C.X被定义为整型变量,Y被定义为变体类型变量
D.X被定义为变体类型变量,Y被定义为整型变量
第3题:
A.v_record emp%type;
B.v_record emp%recordtype;
C.v_record emp%record_type;
D.v_record emp%rowtype;
E.v_record emp%row_type;
第4题:
A.SELECT TOP 5 * FROM EMP
B.SELECT DISTINCT 5 * FROM EMP
C.SELECT * FROM EMP WHERE ROWNUM<6
D.SELECT * FROM EMP WHERE ROWNUM=5
第5题:
以下关于%ROWTYPE的作用说法正确的是()。
第6题:
若要使某用户只能查询表EMP中的部分记录,应采取的策略是()
第7题:
如何将变量v_row定义为emp表的记录类型()
第8题:
v_sal emp%rowtype;
v_sal emp.sal%type;
v_sal emp.sal.%type;
v_sal %type(emp.sal);
v_sal (emp.sal)%type;
第9题:
变量名->元素名
变量名.元素名
元素名->变量名
元素名.变量名
第10题:
将该用户级别设定为DBA
将表EMP的查询权限赋予该用户
编写查询表EMP的存储过程
构建该部分记录的行级视图,并将该视图的查询权限赋予该用户
第11题:
SELECT TOP 5 * FROM EMP
SELECT DISTINCT 5 * FROM EMP
SELECT * FROM EMP WHERE ROWNUM<6
SELECT * FROM EMP WHERE ROWNUM=5
第12题:
v_row emp%type;
v_row emp%record;
v_row emp%tabletype;
v_row emp%rowtype;
第13题:
在VBA中,如果没有显式声明或用符号来定义变量的数据类型,变量的默认数据类型为
A.Boolean
B.Int
C.String
D.Variant
第14题:
由如下程序: Type Student Num As Integer Name As String * 13 End Type Dim stu(30)As Student 该程序段定义了两个程序成分,它们分别是 ______。
A.记录类型和记录数组
B.记录类型和记录变量
C.显示类型和记录数组
D.记录变量和记录数组
第15题:
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;
第16题:
用Type语句定义的类型称为记录类型,要访问一个某记录型变量中的某个元素,需采用下述格式()。
第17题:
检索出员工表emp中的第6条到第10条记录。显字段:emp表中的全部字段。
第18题:
下列哪个操作可以将表中的数据删除,并且不需要回滚删除后回收其所占有的空间,但表定义保留()
第19题:
X、Y均被定义为整型变量
X、Y均被定义为变体类型变量
X被定义为整型变量,Y被定义为变体类型变量
X被定义为变体类型变量,Y被定义为整型变量
第20题:
type array arr_type[emp.ename%type] index by binary_integer;
type table arr_type[emp.ename%type] index by binary_integer;
type arr_type is table of emp.ename%type index by binary_integer;
type arr_type is pl_sql table of emp.ename%type index by binary_integer;
第21题:
select * from emp where comm='';
select * from emp where comm=null;
select * from emp where nvl(comm)=0;
select * from emp where comm is null;
select * from emp where nvl(comm,0)=0;
第22题:
v_record emp%type;
v_record emp%recordtype;
v_record emp%record_type;
v_record emp%rowtype;
v_record emp%row_type;
第23题:
使用%ROWTYPE来定义一个表示表中一行记录的变量
使用%ROWTYPE的变量不能实现将一行记录的部分字段赋值
使用%ROWTYPE将一个变量的数据类型与一张表中记录的各个列的数据类型保持一致
第24题:
select * from emp where hiredate>='19820101';
select * from emp where hiredate>=to_char('19820101','YYYYMMDD');
select * from emp where to_date(hiredate,'YYYYMMDD')>='19820101';
select * from emp where to_char(hiredate,'YYYYMMDD')>='19820101';