how to create views in sql with syntax and example
CREATE VIEW view_name AS SELECT column_name(s) FROM table_name WHERE condition Using Views CREATE VIEW [Current Product List] AS SELECT ProductID,ProductName FROM Products WHERE Discontinued=No