Skip to content

concept: view

David Liu edited this page Apr 5, 2025 · 5 revisions

View 视图

简单的说,View存储了query,并有名称与之关联

  • View不过是指向实际查询的虚拟指针 常被用来向外部用户和应用程序暴露数据

  • 通过添加一个逻辑层,可修改底层结构的同时不改动应用程序
  • 隐藏数据:通过只显示表中的某些列

Updatable views

Some view are not read-only, update on the view data can propagate upstream to the original table in certain condition

Materialized View

Clone this wiki locally