About 16,200,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 are fields from one or more real tables in the database.

  2. SQL Views - GeeksforGeeks

    Apr 18, 2025 · SQL views are particularly useful for managing complex queries, enhancing security, and presenting data in a simplified format. In this guide, we will cover the SQL create view statement, updating and deleting views, and using the WITH CHECK OPTION clause.

  3. sql - Display the contents of a VIEW in MySQL - Stack Overflow

    Nov 17, 2015 · First: I was wondering if there is a way to display the information in a view I just created. I couldn't find anything online that was similar to the DISPLAY Tables query that could be used for views. The query to create my view is: CREATE VIEW View1 AS SELECT * FROM CustOrder WHERE shipToName = 'Jim Bob'

  4. sql server - How to use VIEWS in SQL Queries - Stack Overflow

    Jul 16, 2014 · Views display only selected data. The syntax for creating a View is given below: Select Column1, Column2 From Tablename Where (Condition) Group by (Grouping Condition) having (having Condition) For example: Create View View_Employeeinfo As s. Select EmpId, EmpName, employmentdate From EmployeeInfo .

  5. Creating SQL VIEWs Step By Step - MSSQLTips.com - SQL Server …

    Apr 20, 2022 · The CREATE VIEW statement in SQL allows us to use a SELECT statement to define the parameters of our view. In its simplest form, a view is simply a SELECT statement preceded by the "CREATE VIEW AS" statement as the VIEW definition.

  6. SQL Views - SQL Tutorial

    This tutorial introduces you to SQL views and shows you how to create, modify, and delete views from the database.

  7. SQL Views Explained - Online Tutorials Library

    Learn how to use SQL views effectively in your database management. Understand the benefits and implementation of views with practical examples.

  8. SQL Views (With Examples) - Programiz

    In SQL, views are a set of commands under one name. For reference, we can understand views as a function in programming. In this tutorial, you will learn about views in SQL with the help of examples.

  9. SQL CREATE VIEW Statement: How to Use It and Best Practices

    Mar 27, 2025 · In this article, we’ll uncover the basics of the SQL CREATE VIEW statement, explore view types, and learn how to create a view in SQL, and how to query a view and drop it when you are done with it.

  10. Create, Alter, Drop and Query SQL Server Views

    Dec 12, 2019 · Views, along with both stored procedures and inline table-valued functions, can also permit the display of selected portions of underlying tables without granting read and write permissions to underlying tables.

  11. Some results have been removed
Refresh