


The division of the database's three-level schema architecture is conducive to maintaining the "data independence" of the database. The three-level database schema includes external schema, schema, and internal schema; the two-level images of the three-level schema are the image of the external schema/mode and the image of the schema/internal schema. The image of the external mode/mode ensures logical independence, and the image of the mode/inner mode ensures physical independence.
The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.
The division of the three-level schema architecture of the database is conducive to maintaining the "data independence" of the database.
Three-level database schema architecture
People have designed a rigorous architecture for the database, a standard structure recognized in the database field It is a three-level schema structure, which includes external schema, conceptual schema, and internal schema, which effectively organizes and manages data and improves the logical independence and physical independence of the database. The user level corresponds to the external schema, the conceptual level corresponds to the conceptual schema, and the physical level corresponds to the internal schema, allowing users at different levels to form different views of the database. The so-called view refers to the scope, angle and method of observing, understanding and understanding data. It is the reflection of the database in the "eyes" of the user. Obviously, the database "seen" by users at different levels (levels) is different.
-
External mode
External mode is also called submode or user mode, corresponding to the user level. It is a data view of the database seen by one or several users, and is a logical representation of data related to a certain application. The foreign schema is a subset derived from the schema and contains that portion of the data in the schema that is allowed to be used by a specific user. Users can describe and define data records corresponding to users (external schemas) through external schema description languages, and they can also use data manipulation language (Data Manipulation Language, DML) to operate on these data records. The external schema reflects the user's view of the database system.
-
Conceptual pattern
Conceptual pattern is also called pattern or logical pattern, corresponding to the concept level. It is a global logical structure constructed by the database designer based on a unified point of view, integrating the data of all users. It is an overall description of the logical structure and characteristics of all data in the database, and is a common data view (global view) for all users. It is described and defined by the Data Description Language (DDL) provided by the database management system. Conceptual schema reflects the overall view of the database system.
-
Internal mode
Internal mode is also called storage mode and corresponds to the physical level. It is the internal representation or underlying description of all data in the database, and is the lowest level logical description of the database. It describes the storage method and physical structure of the data on the storage medium, and corresponds to the database actually stored on the external storage medium. Internal patterns are described and defined by internal pattern description languages. The internal schema reflects the storage view of the database system.
Two-level mapping
In order to achieve the connection and conversion between these three abstract levels, the database The management system provides two levels of mapping in the three-level mode, namely external mode/mode mapping and mode/internal mode mapping.
1. Foreign mode/mode mapping
There can be any number of foreign modes for the same mode. For each foreign schema, the database system has a foreign schema/schema mapping. When the schema is changed, the database administrator makes corresponding changes to each foreign schema/schema mapping so that the foreign schema remains unchanged. In this way, applications written based on data external schema do not need to be modified, ensuring the logical independence of data and programs.
Summary: External schema/schema mapping ensures that when the schema changes, the external schema does not change, that is, logical independence.
2. Schema/inner schema mapping
There is only one schema and one inner schema in the database, so the schema/inner schema mapping is unique, and it defines the database The correspondence between the global logical structure and the storage structure. When the storage structure of the database is changed, the database administrator makes corresponding changes to the schema/internal schema mapping so that the schema remains unchanged and the application does not change accordingly. In this way, the physical independence of data and programs is ensured.
Summary: Mode/inner mode mapping ensures that when the inner mode changes, the mode does not change, that is, physical independence.
Two-layer mapping is only at the system design level, ensuring the stability of its underlying mode (foundation) in each mode. Two-layer mapping is only a guarantee at the system theoretical design level. If your application requirements themselves change, everything may need to be changed.
Recommended tutorial: mysql video tutorial
The above is the detailed content of The division of the three-level schema architecture of the database is conducive to maintaining what the database. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于索引优化器工作原理的相关内容,其中包括了MySQL Server的组成,MySQL优化器选择索引额原理以及SQL成本分析,最后通过 select 查询总结整个查询过程,下面一起来看一下,希望对大家有帮助。

sybase是基于客户/服务器体系结构的数据库,是一个开放的、高性能的、可编程的数据库,可使用事件驱动的触发器、多线索化等来提高性能。

visual foxpro数据库文件是管理数据库对象的系统文件。在VFP中,用户数据是存放在“.DBF”表文件中;VFP的数据库文件(“.DBC”)中不存放用户数据,它只起将属于某一数据库的 数据库表与视图、连接、存储过程等关联起来的作用。

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

microsoft sql server是Microsoft公司推出的关系型数据库管理系统,是一个全面的数据库平台,使用集成的商业智能(BI)工具提供了企业级的数据管理,具有使用方便可伸缩性好与相关软件集成程度高等优点。SQL Server数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能,使用户可以构建和管理用于业务的高可用和高性能的数据应用程序。

go语言可以写数据库。Go语言和其他语言不同的地方是,Go官方没有提供数据库驱动,而是编写了开发数据库驱动的标准接口,开发者可以根据定义的接口来开发相应的数据库驱动;这样做的好处在于,只要是按照标准接口开发的代码,以后迁移数据库时,不需要做任何修改,极大方便了后期的架构调整。

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?

结构层次是“数据库→数据表→记录→字段”;字段构成记录,记录构成数据表,数据表构成了数据库。数据库是一个完整的数据的记录的整体,一个数据库包含0到N个表,一个表包含0到N个字段,记录是表中的行。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.