About 61,500,000 results
Open links in new tab
  1. SQL CREATE VIEW, REPLACE VIEW, DROP VIEW Statements - W3Schools

    SQL CREATE VIEW Statement. In SQL, a view is a virtual table based on the result-set of an SQL statement. A view contains rows and columns, just like a real table. The fields in a view …

  2. SQL Views - GeeksforGeeks

    Apr 18, 2025 · CREATE VIEWS in SQL. We can create a view using CREATE VIEW statement. A View can be created from a single table or multiple tables. Syntax: CREATE VIEW view_name …

  3. CREATE VIEW (Transact-SQL) - SQL Server | Microsoft Learn

    Apr 9, 2025 · Use this statement to create a view of the data in one or more tables in the database. For example, a view can be used for the following purposes: To focus, simplify, and …

  4. SQL CREATE VIEW Statement - GeeksforGeeks

    Jan 30, 2025 · The CREATE VIEW statement in SQL is used to create a virtual table based on the result of a query. Views help simplify complex queries and enhance security by restricting …

  5. How to create a view in SQL Server - SQL Shack

    Dec 16, 2019 · In this article, we explored the view notion in SQL and then we learned how to create a view in SQL with two different methods. In the first one, we used the T-SQL method …

  6. Creating SQL VIEWs Step By Step - SQL Server Tips

    Apr 20, 2022 · In this tutorial, you will learn what a view is and how to use T-SQL to work with views. We will also discuss some common reasons for creating views and some advantages …

  7. CREATE VIEWSQL Tutorial

    SQL CREATE VIEW statement is used to create a virtual table that is based on the result set of a SELECT statement. A view does not store any data of its own; instead, it references data from …

  8. SQL Server CREATE VIEW - Creating New Views in SQL Server

    This tutorial shows you how to use the SQL Server CREATE VIEW statement to create a new view in the database.

  9. How to Create View in SQL - LearnSQL.com

    If you want to create a new view in a database, use the CREATE VIEW keyword followed by the name of the view (in our example: it_employee). Next is the keyword AS. Then in the SELECT …

  10. SQL Views - SQL Tutorial

    To create a new view, you use the CREATE VIEW statement followed by a query as follows: AS query Code language: SQL (Structured Query Language) (sql) In this syntax: First, specify the …

  11. Some results have been removed