About 99,100,000 results
Open links in new tab
  1. SQL Views - GeeksforGeeks

    Sep 8, 2025 · A view in SQL is a saved SQL query that acts as a virtual table. Unlike regular tables, views do not store data themselves. Instead, they dynamically generate data by …

  2. What is an SQL View? - LearnSQL.com

    Dec 11, 2020 · Question: What is an SQL View? An SQL view is a virtual table that selects data from one or more tables. It does not store data itself, but it dynamically displays data from …

  3. Views - SQL Server | Microsoft Learn

    Nov 22, 2024 · A view acts as a filter on the underlying tables referenced in the view. The query that defines the view can be from one or more tables or from other views in the current or …

  4. 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 …

  5. SQL Views (Virtual Tables): What are Views in SQL? | DataCamp

    Jan 9, 2025 · Views reduce the complexity of SQL queries and provide secure access to underlying tables. What is a View? Views are a special version of tables in SQL. They provide …

  6. SQL Views

    In SQL, a view is a named query stored in the database system. Unlike a table, a view does not store data physically. The database system only stores the view’s definition. When you query …

  7. Understanding the Purpose of Creating a View in a Database

    Sep 13, 2024 · Simply put, a view is a named query that retrieves data from one or more tables. In particular, it acts as a virtual table that enables users to interact with it as if it were a regular …

  8. View (SQL) - Wikipedia

    In a database, a view is the result set of a stored query that presents a limited perspective of the database to a user. [1] . This pre-established query command is kept in the data dictionary.

  9. SQL Views - SQL Tutorial

    SQL views are virtual tables that are created using a SELECT statement in SQL. A view is a database object that acts as a filter to the data stored in one or more tables. It is a logical …

  10. Understanding Views in Databases: A Complete Guide

    Jan 26, 2025 · Unlike a physical table, a view doesn’t store data itself. Instead, it’s a saved SQL query that dynamically retrieves data from one or more tables whenever the view is accessed. …