The primary key on table EMP is the EMPNO column. Which of the following statements will not use the associated index on EMPNO?A. select * from EMP where nvl(EMPNO, '00000') = '59384';B. select * from EMP where EMPNO = '59384';C. select EMPNO, LASTNAME from EMP where EMPNO = '59384';D. select 1 from EMP where EMPNO = '59834';
-
Interview Candidate
- Jun 19th, 2005
- 9
- 20077
Showing Answers 1 - 9 of 9 Answers
The primary key on table EMP is the EMPNO column. Which of the following statements will not use the associated index on EMPNO?A. select * from EMP where nvl(EMPNO, '00000') = '59384';B. select * from EMP where EMPNO = '59384';C. select EMPNO, LASTNAME from EMP where EMPNO = '59384';D. select 1 from EMP where EMPNO = '59834';