当前位置:网站首页>Database, relational database and NoSQL non relational database
Database, relational database and NoSQL non relational database
2022-07-06 03:51:00 【Passerby Chen】
1. database (DataBase,DB)
database (DataBase,DB): It refers to the storage device stored in the computer for a long time ( Hard disk ) On , Organize according to certain rules , A collection of data that can be shared by various users or applications , Or in the form of files on the server computer .
database (DataBase,DB), Namely A warehouse for storing data , Data can be persisted , And pass sql Statement to quickly add, delete, modify and check the data CRUD operation (CRUDP: establish create, Read read, modify update, Delete delete, Pagination page).
The main difference between database and ordinary file system ( cause ): The database can quickly find the corresponding data .
database structure
A database server software can create multiple databases ( An application corresponds to a database )
A database can create multiple tables ( A class corresponds to a table )
A table can store multiple records ( An object corresponds to a record )
The client connects to the database server software
SQL(Structure Query Language, Structured query language )
SQL(Structure Query Language, Structured query language )), adopt sql Operating the database ( Operating the database , Operation table , Operational data ).
SQL By the National Bureau of standards (ANSI) American Standard for relational database language , Later, it was organized by international standards organization (ISO) International standards adopted as relational database language . Database manufacturers (MySql,oracle,sql server) All support ISO Of SQL standard . Each database manufacturer has made its own extension on the basis of the standard .
SQL The grammar of
Each statement ends with a semicolon ( The command line needs ), If in navicat,Java It is not necessary to add in the code .
SQL stay window Case insensitive in , In keywords, uppercase and lowercase are the same
SQL The classification of
DDL Data definition language | Data Definition Language | DDL Operating the database ,DDL Operation table |
DML Data manipulation language | Data Manipulation Language | DML Operation table record - Additions and deletions |
DQL Data query language | Data Query Language | DQL Operation table record - Inquire about |
DCL Data control language | Data Control Language | The setting of user rights |
2. Relational databases : Stored on disk
A relational database is a database created according to a relational model . The so-called relationship model is “ one-on-one 、 One to many 、 Many to many ” And so on , A relational model is a two-dimensional tabular model , Therefore, a relational database is a data organization composed of two-dimensional tables and their relations .
Relational models include data structures ( The problem of data storage , Two-dimensional table )、 Set of operation instructions (SQL sentence )、 Integrity constraints ( Table data constraints 、 Constraints between tables ).
Common relational databases
MySQL | Free open source , Small and medium-sized database | Has been Oracle Acquisition (MySQL6.X The version also began to charge ) |
OracleSQL | Rechargeable Large databases | Oracle Products of the company |
DB2 | Rechargeable In the banking system | IBM The company's database products |
SQLServer | Rechargeable Medium sized database | MS company |
SyBase | Has faded out of the stage of history | Provides a very professional data modeling tool PowerDesigner( Founder Wang Xiaoyun ) |
SQLite | Embedded small database | It's used on the mobile phone |
3. Non relational databases NoSQL(Not Only SQL): Stored in memory
NoSQL(Not Only SQL, meaning “ not only SQL”), It's a new database concept ( A general term for a non-relational database ), It is a supplement to relational database , Not a substitute .
effect : Dealing with data processing problems based on massive users and massive data .
NoSQL The advantages of :
1. Easy to expand
2. Large amount of data , High performance
3. Flexible data model
4. High availability
In order to solve the three high problems , That's what we need NoSQL
Three high questions :
1.High performance - High concurrent read and write requirements for database
2.Huge Storage - The need for efficient storage and access of massive data
3.High Scalability && High Availability- The need for high scalability and high availability of databases
Solve the bottleneck of relational database , Non relational data is currently used as a supplement to relational databases .
common NoSQL Non relational database
classification | Related products | Application scenarios | advantage | shortcoming |
---|---|---|---|---|
The key stores the database (Key-Value) | Redis、MemCache | Content caching , Like conversation 、 The configuration file 、 Parameters, etc. ; Read and write frequently 、 Applications with simple data models | Good scalability , Flexibility , High performance in a large number of operations | Unstructured data , It is usually only treated as string or binary data , The value can only be queried through the key |
Column family storage database ( Distributed ) | HBase、Cassandra、 Bigtable | Distributed data storage and management | High scalability , Fast search speed , Low complexity | Functional limitations , Strong consistency of transactions is not supported |
Document database <key,value> in value yes JSON Structured documents | MongoDB、CouchDB | Web application , Store document oriented or similar semi-structured data | Flexible data structure , According to value Build index | Lack of uniform query syntax |
graphics (Graph) database | Neo4j、InfoGrid | Social networks 、 Recommendation system , Focus on building the relationship map | Support complex graphics algorithms | High complexity , It can only support a certain data scale |
边栏推荐
- How to standardize the deployment of automated testing?
- Do you know cookies, sessions, tokens?
- 自动化测试怎么规范部署?
- LTE CSFB test analysis
- Serial port-rs232-rs485-ttl
- Svg drag point crop image JS effect
- Edcircles: a real time circle detector with a false detection control translation
- 简易博客系统
- Image super resolution using deep revolutionary networks (srcnn) interpretation and Implementation
- Suggestions for new engineer team members
猜你喜欢
3.1 detailed explanation of rtthread serial port device (V1)
2.2 STM32 GPIO操作
C (thirty) C combobox listview TreeView
C language circular statement
阿里测试师用UI自动化测试实现元素定位
C form application of C (27)
three. JS page background animation liquid JS special effect
Align items and align content in flex layout
On Data Mining
KS008基于SSM的新闻发布系统
随机推荐
[American competition] mathematical terms
Blue Bridge Cup - Castle formula
如何修改表中的字段约束条件(类型,default, null等)
JS music online playback plug-in vsplayaudio js
Thread sleep, thread sleep application scenarios
3.1 detailed explanation of rtthread serial port device (V1)
Schnuka: visual positioning system working principle of visual positioning system
Differential GPS RTK thousand search
P7735-[noi2021] heavy and heavy edges [tree chain dissection, line segment tree]
SWC introduction
Svg drag point crop image JS effect
自动化测试的好处
C (XXIX) C listbox CheckedListBox Imagelist
Edcircles: a real time circle detector with a false detection control translation
Teach you to build your own simple BP neural network with pytoch (take iris data set as an example)
1. New project
Indicator system of KQI and KPI
2.1 rtthread pin设备详解
给新人工程师组员的建议
C form application of C (27)