YOU HAVE A VIEW THAT DISPLAYS RECORDS FROM MULTIPLE TABLES WITHIN...

12. You have a view that displays records from multiple tables within the same database. These tables are managed by different team members. Frequently, your view is inaccessible, when someone modifies the underlying tables. You are instructed by management that the view must work and be accessible at all times. You wish to prevent people from deleting or modifying the tables your view relies on. What is the best way to achieve this?A. Use an ALTER TABLE WITH SCHEMABINDING statement to update each of the source tables.B. Use an ALTER TABLE WITH CHECK statement to update each of the source tables.C. Use an ALTER VIEW WITH SCHEMABINDING statement to create the view.D. Use an ALTER VIEW WITH CHECK statement to create the view.