CREATE VIEW | SQL Tutorial and Query Example

Text copied!

CREATE VIEW


  • CREATE VIEW syntax in SQL
    CREATE VIEW view_name
    AS
    SELECT column1, column2, column3, ...
    FROM table_name
    WHERE condition;