Direction: Choose the correct option
Q1.
What is a view in SQL?
Direction: Choose the correct option
Q2.
CREATE VIEW emp_dept AS SELECT e.name, d.dept_name FROM employees e JOIN departments d ON e.dept_id = d.dept_id;What does this do?Direction: Choose the correct option
Q3.
Why use views?
Direction: Choose the correct option
Q4.
CREATE VIEW high_salary AS SELECT * FROM employees WHERE salary > 70000 WITH CHECK OPTION;What does WITH CHECK OPTION do?Direction: Choose the correct option
Q5.
How do you remove a view?
