Views are virtual tables defined by SQL queries that simplify complex data representation. They can remove unnecessary columns, aggregate results, partition data, and secure sensitive information.
In DE_Tools see: https://github.com/rhyslwells/DE_Tools/blob/main/Explorations/SQLite/Viewing/Viewing.ipynb
Basic Usage:
- Simplification
- Aggregation (using GROUP)
- Common Table Expression
- Securing data: can give all values in a field the same value.
Advanced Usage
- Temporary Views: Exist only for the duration of the database connection.
- Common Table Expression: Serve as temporary views for a single query.
- Soft Deletion: Use views and triggers to mark records as deleted without physically removing them from the table.
Related topics:
Why Use Views?
-
Simplification and Abstraction:
- Views encapsulate complex queries, allowing users to interact with data without needing to understand the underlying structure. This simplifies data retrieval by hiding complexity.
-
Security:
- Views restrict access to specific data by granting users access to views instead of underlying tables, which can help protect sensitive information. Note: Access controls may vary by database system (e.g., not available in SQLite).
-
Reusability and Maintainability:
- Define complex queries once in a view and reuse them across multiple applications, simplifying maintenance when logic changes.
-
Data Consistency and Integrity:
- Ensure consistent data presentation across applications and users by encapsulating business logic for uniform calculations.
-
Performance Optimization:
- While regular views do not inherently improve performance, materialized views can enhance performance by storing precomputed results.
-
Logical Data Independence:
- Provide a layer of abstraction between physical data storage and access methods, allowing schema changes without affecting view users.
-
Aggregation and Partitioning:
- Views can be used to calculate and store aggregated results (e.g., average ratings) and organize data by specific criteria (e.g., years or categories).