Which command would work in relation to the EMPDET table?

EMPDET is an external table containing the columns EMPNO and ENAME. Which
command would work in relation to the EMPDET table?

EMPDET is an external table containing the columns EMPNO and ENAME. Which
command would work in relation to the EMPDET table?

A.
CREATE VIEW empvu AS SELECT* FROM empdept;

B.
CREATE INDEX empdet_dx ON empdet(empno);

C.
DELETE FROM empdet WHERE ename LIKE ‘J%’;

D.
UPDATE empdet SET ename = ‘Amit’ WHERE empno = 1234;

Explanation:



Leave a Reply 3

Your email address will not be published. Required fields are marked *


tony

tony

The external tables feature is a complement to existing SQL*Loader functionality. It enables you to access data in external sources as if it were in a table in the database.external tables were read-only.