The record group in the EMP form is populated using a SELECT

题目
单选题
The record group in the EMP form is populated using a SELECT statement that is constructed programmatically at runtime. Five employee records are displayed at one time, and a user chooses item two from the record group. Which built-in would you use to determine which rows were flagged in the record group?()
A

GET_GROUP_ROW_COUNT 

B

GET_GROUP_SELECTION_COUNT 

C

GET_GROUP_SELECTION 

D

FIND_GROUP 

E

FIND_COLUMN 

F

ADD_GROUP_ROW 

参考答案和解析
正确答案: C
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

以下说法错误的是( )

A.SELECT max(sal),deptno,job FROM EMP group by sal;

B.SELECT max(sal),deptno,job FROM EMP group by deptno;

C.SELECT max(sal),deptno,job FROM EMP;

D.SELECT max(sal),deptno,job FROM EMP group by job;


正确答案:C 

第2题:

Examine the structure of the EMP_DEPT_VU view:Column Name Type RemarksEMPLOYEE_ID NUMBER From the EMPLOYEES tableEMP_NAME VARCHAR2(30) From the EMPLOYEES table JOB_ID VARCHAR2(20) From the EMPLOYEES tableSALARY NUMBER From the EMPLOYEES tableDEPARTMENT_ID NUMBER From the DEPARTMENTS table DEPT_NAME VARCHAR2(30) From the DEPARTMENTS table Which SQL statement produces an error?()

A. SELECT * FROM emp_dept_vu;

B. SELECT department_id, SUM(salary) FROM emp_dept_vu GROUP BY department _ id;

C. SELECT department_id, job_id, AVG(salary) FROM emp_dept_vu GROUP BY department _ id, job_id;

D. SELECT job_id, SUM(salary) FROM emp_dept_vu WHERE department_id IN (10,20) GROUP BY job_id HAVING SUM (salary) > 20000

E. None of the statements produce an error; all are valid.


参考答案:E

第3题:

以下语句错误的是( )

A.select sal+1 from emp;

B.select sal*10,sal*deptno from emp;

C.不能使用运算符号

D.select sal*10,deptno*10 from emp;


正确答案:C 

第4题:

列出EMP表中,从事每个工种(JOB)的员工人数()

A.select job from emp;

B.select job,count(*) from emp;

C.select distinct job,count(*) from emp;

D.select job,count(*) from emp group by job;

E.select job,sum(empno) from emp group by job;


参考答案:D

第5题:

emp表是雇员信息表,以下哪个变量可以存放emp表中的一条记录()

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;


参考答案:D

第6题:

统计每个部门中人数( )

A.SELECT SUM(ID) FROM EMP GROUP BY DEPTNO;

B.SELECT SUM(ID) FROM EMP ORDER BY DEPTNO;

C.SELECT COUNT(ID) FROM EMP ORDER BY DEPTNO;

D.SELECT COUNT(ID) FROM EMP GROUP BY DEPTNO;


正确答案:D 

第7题:

Examine the contents of SQL loader control file:Which three statements are true regarding the SQL* Loader operation performed using the control file?()

A. An EMP table is created if a table does not exist. Otherwise, if the EMP table is appended with the loaded data.

B. The SQL* Loader data file myfile1.dat has the column names for the EMP table.

C. The SQL* Loader operation fails because no record terminators are specified.

D. Field names should be the first line in the both the SQL* Loader data files.

E. The SQL* Loader operation assumes that the file must be a stream record format file with the normal carriage return string as the record terminator.


参考答案:A, B, E

第8题:

以下语句不正确的是( )

A.select * from emp;

B.select ename,hiredate,sal from emp;

C.select * from emp order deptno;

D.select * from where deptno=1 and sal<300;


正确答案:C 

第9题:

取出工资在2000到3000元(包括上下限)之间的员工()

A.select * from emp wher sal in (2000,3000);

B.select * from emp wher sal like (2000,3000);

C.select * from emp wher sal = (2000,3000);

D.select * from emp wher sal between 2000 and 3000;


参考答案:D

第10题:

限制从EMP表中只选出前5条记录的查语句为()。

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


参考答案:C

更多相关问题