View is a data object which does not contain any data. Contents of the view are the resultant of a base table. They are operated just like base table but they don’t contain any data of their own. The difference between a view and a table is that views are definitions built on top of other tables (or views). If data is changed in the underlying table, the same change is reflected in the view. A view can be built on top of a single or multiple tables. A database view is known as a “virtual table” that allows you to query the data in it. Understanding the database views and using them correctly are very important. we will discuss the database views, how they are implemented in MySQL,A view contains rows and columns, just like a real table. The fields in a view are fields from one or more real tables in the database. Introduction to Database View Why views ? 1-Views can be effective copies of base tables. 2-Views can be used in INSERT/UPDATE/DELETE. 3-Views can be views of vie...