Vinod Bakshi
What are the advantages of View
By Vinod Bakshi in SQL Server on Jun 06 2012
  • raj kadam
    Feb, 2015 23

    1.you can provide required column to user ex.if table(id,Name,City) n u want to show only Name,City then create view view_table as select Name,City from table ----execute-- Select * from view_table

    • 1
  • Pradeep
    Sep, 2015 3

    Security, Query Simplicity, Structural simplicity, Consistency, Data Integrity, Logical data independence, Performance, Update restrictions etc...

    • 0
  • Santhosh Kumar Jayaraman
    Jul, 2012 10

    1. We can query more than one table using views.(complex queries) 2. Hide columns and expose only selected columns. So its restricting access to view the complete table. 3.Inserts and updates are not allowed in views. So its read only mode and hence you can use this for look ups and readonly grids.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS