SQL SELECT Statement, Part one

.An SQL View is a type of meta-data. It allows you to store an SQL SELECT statement under an object name, which in turn can be queried as a table. Since views are meta-data, they reside in the DML family of SQL statements, and have corresponding CREATE VIEW, ALTER VIEW and DROP VIEW statements. Here’s the syntax of the CREATE VIEW statement: ................
................