0 votes
in Sql by
What are the advantages of Views in SQL?

1 Answer

0 votes
by

Advantages of Views are:

Views restrict access to the data because the view can display selective columns from the table.

Views can be used to make simple queries to retrieve the results of complicated queries. For Example, views can be used to query information from multiple tables without the user knowing.

...