Q:

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

belongs to collection: DBMS -TRANSACTIONS MCQs

0

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


  1. UPDATE empdet SET ename = \'Amit\' WHERE empno = 1234;
  2. DELETE FROM empdet WHERE ename LIKE \'J%\';
  3. CREATE VIEW empvu AS SELECT * FROM empdept;
  4. CREATE INDEX empdet_idx ON empdet(empno);

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (c).CREATE VIEW empvu
AS
SELECT * FROM empdept;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

DBMS -TRANSACTIONS MCQs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
In which scenario would you use the ROLLUP operato... >>
<< __________ are used to ensure that transactions ac...