当前位置:网站首页>Classification of databases

Classification of databases

2022-06-13 07:29:00 Zhao JC

What is a database

database ( DataBase , abbreviation DB )

  • Concept : Data warehouse , Keep it in a computer for a long time , Organized , A collection of large amounts of data that can be shared , It's a number “ Warehouse ”
  • effect : Save the data , And can be safe Management data ( Such as : Add, delete, change, check, etc ), Reduce redundant …

Database classification

Relational database ( SQL )

  • MySQL , Oracle , SQL Server , SQLite , DB2 , …
  • Relational database establishes the relationship between tables through foreign key Association

Non relational database ( NOSQL )

  • Redis , MongoDB , …
  • Non relational databases usually refer to data stored in the database as objects , The relationship between objects is determined by the Attribute to determine

What is? DBMS

Database management system ( DataBase Management System )
Database management software , Scientific organization and storage of data , Get and maintain data efficiently

Many applications operate databases through database management software .

 Insert picture description here

INNODB The engine and MYISAM engine

INNODB engine (MySQL The default engine ): High safety , Transaction processing , Multi table multi-user operation
MYISAM engine : Save space , Faster

 Insert picture description here

原网站

版权声明
本文为[Zhao JC]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202270548462829.html