MySQL data analysis storage engine example explanation

MySQL data analysis storage engine example explanation

Today we are going to talk about the MySQL storage engine. As a friend who works in the data analysis industry, I always say that we don’t need to go into detail about what the MySQL storage engine is, as long as we understand it.

1. Introduce cases

There are two people, Zhang Ma Hu and Li Xiaoxin, who are bicycle managers at the subway entrance. Every day many people come to store and retrieve bicycles. Zhang Mahu's management method is to store the items on his own without recording what car it is. Li is very careful. When he parks or retrieves his bike, he records the characteristics of the person who parks the bike and the characteristics of the bike. When someone comes to pick up the bike, he has to carefully check whether the characteristics of the person and the bike correspond.

think:
Who handles business faster, Zhang Mahu or Li Xiaoxin? Who is safer in bicycle management, Zhang or Ma Hu? Databases have different storage and management methods for the same data. In MySQL, we call such a thing a storage engine.

The name storage engine exists only in the mysql database. There is a corresponding mechanism in Oracle, but it is not called a storage engine. In Oracle, it is called the storage method of the table.

MySQL supports many storage engines, each of which has its own data storage method. At the same time, each storage engine has its own advantages and disadvantages. Therefore, you need to choose a storage engine that suits you at the right time.

2. View the system's default storage engine and default character set

-- MySQL versions 5.0 and above support 9 storage engines.
-- There is no need to write a semicolon after this code.
mysql> show engines \G

-- View the system's current default storage engine.
mysql> show variables like '%storage_engine%';

-- View the system default character set.
mysql> show variables like '%char%';

3. Common storage engines

insert image description here

1) MyISAM: does not support transactions. (Zhang Ma Hu)

insert image description here

Advantages and disadvantages of MyISAM:

insert image description here

2) InnoDB: supports transactions. (Li Xiaoxin)

insert image description here

Advantages and disadvantages of InnoDB:

insert image description here

3) MEMORY (just understand this)

insert image description here

Advantages and disadvantages of MEMORY:

insert image description here

4. Just understand the picture below

insert image description here

The above is the detailed content of the example explanation of MySQL data analysis storage engine. For more information about MySQL data analysis storage engine, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL table type storage engine selection
  • Comparison of storage engines supported by MySQL database
  • Differences and comparisons of storage engines in MySQL
  • Advantages and disadvantages of common MySQL storage engines
  • Let's learn about the MySQL storage engine

<<:  HTML drawing user registration page

>>:  CSS3 realizes the animation of shuttle starry sky

Recommend

W3C Tutorial (7): W3C XSL Activities

A style sheet describes how a document should be ...

CSS imitates Apple's smooth switch button effect

Table of contents 1. Code analysis 2. Source code...

CSS3 animation to achieve the effect of streamer button

In the process of learning CSS3, I found that man...

A brief understanding of MySQL storage field type query efficiency

The search performance from fastest to slowest is...

How to install setup.py program in linux

First execute the command: [root@mini61 setuptool...

Use Navicate to connect to MySQL on Alibaba Cloud Server

1. First enter the server's mysql to modify p...

Solve the problem of invalid utf8 settings in mysql5.6

After the green version of mysql5.6 is decompress...

Install Python virtual environment in Ubuntu 18.04

For reference only for Python developers using Ub...

Three common uses of openlayers6 map overlay (popup window marker text)

Table of contents 1. Write in front 2. Overlay to...

CSS to achieve the effect of rotating flip card animation

The css animation of the rotating flip effect, th...