You have dropped a table from where a VIEW was created . What would be the status of that VIEW
-
View dropped also
-
View becomes invalid
-
View remains as it is
-
View is accessible
B
Correct answer
Explanation
When a base table is dropped, any dependent view becomes invalid because its underlying schema no longer exists. The view object isn't automatically dropped (it remains in metadata with an INVALID status). Attempts to query the invalid view will fail. The view must be recreated or the table restored to make it functional again.