A.You have too many tables. B.Your tables are too long. C.Your tables have difficult names. D.You want to work on your own tables. E.You want to use another schema's tables. F.You have too many columns in your tables.
A.The underlying tables must have data. B.You need SELECT privileges on the view. C.The underlying tables must be in the same schema. D.You need SELECT privileges only on the underlying tables.
A.CREATE VIEW emp_vu AS SELECT * FROM employees WHERE department_id IN (10,20); B.CREATE VIEW emp_vu AS SELECT * FROM employees WHERE department_id IN (10,20) WITH READ ONLY; C.CREATE VIEW emp_vu AS SELECT * FROM employees WHERE department_id IN (10,20) WITH CHECK OPTION; D.CREATE FORCE VIEW emp_vu AS SELECT * FROM employees WHERE department_id IN (10,20); E.CREATE FORCE VIEW emp_vu AS SELECT * FROM employees WHERE department_id IN (10,20) NO UPDATE;