What does mysql database do

What does mysql database do

MySQL is a relational database management system developed by Swedish company MySQL AB and is a product of Oracle. MySQL is the most popular relational database management system

In terms of web applications, MySQL is one of the best RDBMS (Relational Database Management System) application software.

one.

MySQL is a relational database management system that stores data in different tables instead of putting all the data in one large warehouse, which increases the speed.

And improved flexibility.

The SQL language used by MySQL is the most commonly used standardized language for accessing databases. MySQL software adopts a dual licensing policy, divided into community edition and commercial edition.

Small, fast, low total cost of ownership, and especially open source, the development of small and medium-sized websites generally choose MySQL as the website database.

Knowledge point expansion:

The development history of databases can be divided into several stages

Manual management stage

File system stage: data access is difficult, concurrency control is difficult to implement, and data security is difficult to ensure

Data management system stage

Of course, these stages are self-explanatory, if you want to learn more, please search for relevant keywords

When learning MySQL, you may come across the following terms:

Database (DB)

A database is a warehouse that organizes, stores and manages data according to data structures.

The database provides many functions that can be defined through SQL statements to operate data

【DataBase Management System】DataBase Management System (DBMS)

Large-scale software for operating and managing databases, used to create, use and maintain databases

[Relational database]

Relational databases use tables to store data and use the relationships between tables to process data, which also provides guarantees for data security, integrity, concurrency control, and data recovery.

Common database service software: Oracle, MySQL (Oracle); SQL Server, Access (Microsoft)

[Terms of relational database]

Relationship: A two-dimensional table. Each relationship must have a relationship name, also known as the table name.

Field/Attribute: A column in a two-dimensional table

Record/Tuple: A row in a two-dimensional table

Super key: The set of attributes that can uniquely identify a tuple in a relation is called the super key of the relational model.

Candidate key: A superkey that does not contain any extra attributes.

Primary key: A candidate key selected by the user as a tuple identifier

Foreign key: used to associate two tables

Paradigm: A set of relational patterns that conform to a certain level. The tables in the database must follow certain rules.

This is the end of this article about what MySQL database does. For more information about what MySQL database is, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of basic knowledge points of MySql database
  • Briefly understand the MYSQL database optimization stage

<<:  Implementation of running SQL Server using Docker

>>:  How to block IP and IP range in Nginx

Recommend

How to install Nginx in Docker

Install Nginx on Docker Nginx is a high-performan...

How to reference external CSS files and iconfont in WeChat applet wxss

cause The way to import external files into a min...

onfocus="this.blur()" is hated by blind webmasters

When talking about the screen reading software op...

Use of Linux bzip2 command

1. Command Introduction bzip2 is used to compress...

CentOS7 deployment Flask (Apache, mod_wsgi, Python36, venv)

1. Install Apache # yum install -y httpd httpd-de...

Implement a simple data response system

Table of contents 1. Dep 2. Understand obverser 3...

Enable sshd operation in docker

First, install openssh-server in docker. After th...

MySQL randomly extracts a certain number of records

In the past, I used to directly order by rand() t...

HTML basic syntax is convenient for those who are just starting to learn HTML

1.1 General marking A general tag consists of an ...

Detailed explanation of the mysql database LIKE operator in python

The LIKE operator is used in the WHERE clause to ...

mysql8.0.11 winx64 installation and configuration tutorial

The installation tutorial of mysql 8.0.11 winx64 ...

Pure js to achieve typewriter effect

This article example shares the specific code of ...

Javascript basics about built-in objects

Table of contents 1. Introduction to built-in obj...

4 flexible Scss compilation output styles

Many people have been told how to compile from th...

Teach you how to build the vue3.0 project architecture step by step

Table of contents Preface: 1. Create a project wi...