Embed presentation
Download to read offline











A view is a virtual table based on the result set of an SQL statement. Views allow you to present data from one or more tables in a customized way without modifying the base tables. Views can be created using the CREATE VIEW statement by specifying the columns and tables to include. Views can also be dropped using the DROP VIEW statement or updated using the CREATE OR REPLACE VIEW command.










