Google News
logo
SQL Server - Interview Questions
Why are Views required in the SQL Server or any other database?
Views are very beneficial because of the following reasons :
 
* Views are required to hide the complexity that is involved in the database schema and also to customize the data for a particular set of users.

* Views provide a mechanism to control access to particular rows and columns.

* These help in aggregating the data to improve the performance of the database.
Advertisement