- Learning PostgreSQL 11
- Salahaldin Juba Andrey Volkov
- 185字
- 2021-07-02 13:11:40
Data model perspectives
Data model perspectives are defined by ANSI as follows:
- Conceptual data model: Describes the domain semantics, and is used to communicate the main business rules, actors, and concepts. It describes the business requirements at a high level and is often called a high-level data model.
- Logical data model: Describes the semantics for a certain technology, for example, the UML class diagram for object-oriented languages.
- Physical data model: Describes how data is actually stored and manipulated at the hardware level, such as storage area network, table space, CPUs, and so on.
According to ANSI, this abstraction allows changing one part of the three perspectives without amending the other parts. One could change both the logical and the physical data models without changing the conceptual model. To explain, sorting data using bubble or quick sort is not of interest for the conceptual data model. Also, changing the structure of the relations could be transparent to the conceptual model. One could split one relation into many relations after applying normalization rules, or by using enum data types in order to model the lookup tables.
推薦閱讀
- 大學計算機基礎(第二版)
- Learn ECMAScript(Second Edition)
- Spring Boot開發與測試實戰
- Git Version Control Cookbook
- 自己動手寫Java虛擬機
- Java應用開發與實踐
- Vue.js入門與商城開發實戰
- 基于Java技術的Web應用開發
- Learn WebAssembly
- Building a Quadcopter with Arduino
- Oracle從入門到精通(第5版)
- Android開發案例教程與項目實戰(在線實驗+在線自測)
- Apache Spark 2.x for Java Developers
- RSpec Essentials
- Visual Basic程序設計習題與上機實踐