Home Database Mysql Tutorial what is mysql database

what is mysql database

Dec 01, 2021 pm 03:28 PM
mysql database

MySQL database was originally an open source relational database management system. The original developer was the Swedish MySQL AB company. The company was acquired by Sun Microsystems in 2008; in 2009, Oracle acquired Sun Microsystems. Systems company, MySQL has become a product of Oracle.

what is mysql database

The operating environment of this article: Windows 7 system, mysql version 8.0, Dell G3 computer.

What is the mysql database?

MySQL is a relational database management system developed by the Swedish MySQL AB company and is a product of Oracle. MySQL is one of the most popular relational database management systems. In terms of WEB applications, MySQL is one of the best RDBMS (Relational Database Management System) application software.

MySQL (officially pronounced /maɪˌɛskjuːˈɛl/"My S-Q-L", but also often pronounced as /maɪˈsiːkwəl/"My Sequel") was originally an open source relational database management system. The original developer was Swedish MySQL AB, which was acquired by Sun Microsystems in 2008. In 2009, Oracle acquired Sun Microsystems, and MySQL became a product of Oracle.

MySQL has become the most popular open source database in the past due to its high performance, low cost, and good reliability, and is therefore widely used in small and medium-sized websites on the Internet. As MySQL continues to mature, it is gradually used in more large-scale websites and applications, such as Wikipedia, Google, and Facebook. The "M" in the very popular open source software combination LAMP refers to MySQL.

However, after being acquired by Oracle, Oracle significantly increased the price of the MySQL commercial version, and Oracle no longer supports the development of OpenSolaris, another free software project. This has led the free software community to question whether Oracle can still There are concerns that MySQL Community Edition (the only free version among MySQL) will continue to be supported. Michael Widenius, the founder of MySQL, established a branch project MariaDB based on MySQL. Some open source software that originally used MySQL gradually turned to MariaDB or other databases. For example, Wikipedia officially announced in 2013 that it would migrate from MySQL to MariaDB database [6].

MySQL’s license is now divided into free community edition and paid standard edition, enterprise edition, etc. [7]. Generally speaking, if MySQL is released in a non-open source project, or Oracle is required to provide technical support for MySQL, or some enterprise version tools or plug-ins of MySQL are used, or the MySQL source code is modified and used as closed source software, etc. , need to purchase the commercial version. If you just install and use MySQL, or even modify and use MySQL, regardless of whether it is charged or not; or if the software does not include MySQL and the user of the software installs MySQL by himself; or if MySQL is included in open source software products using the GPL agreement, you may use the community version in these cases MySQL.

mysql features

  • Written in C and C, and tested using a variety of compilers to ensure the portability of the source code.

  • Supports AIX, BSDi, FreeBSD, HP-UX, Linux, Mac OS, Novell NetWare, NetBSD, OpenBSD, OS/2 Wrap, Solaris, Windows and other operating systems.

  • Provides APIs for multiple programming languages. These programming languages ​​include C, C, C#, VB.NET, Delphi, Eiffel, Java, Perl, PHP, Python, Ruby and Tcl, etc.

  • Supports multi-threading, makes full use of CPU resources, and supports multiple users.

  • Optimized SQL query algorithm, effectively improving query speed.

  • It can be executed as a standalone application in a client-server network environment, or it can be embedded into other software as a library.

  • Provides multi-language support. Common encodings such as Chinese GB 2312, BIG5, Japanese Shift JIS, etc. can be used as data table names and data column names.

  • Provides multiple database connection channels such as TCP/IP, ODBC and JDBC.

  • Provides management tools for managing, checking, and optimizing database operations.

  • Can handle large databases with tens of millions of records.

[Related recommendations: mysql video tutorial]

The above is the detailed content of what is mysql database. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP development practice: Use PHPMailer to send emails to users in the MySQL database PHP development practice: Use PHPMailer to send emails to users in the MySQL database Aug 05, 2023 pm 06:21 PM

PHP development practice: Use PHPMailer to send emails to users in the MySQL database Introduction: In the construction of the modern Internet, email is an important communication tool. Whether it is user registration, password reset, or order confirmation in e-commerce, sending emails is an essential function. This article will introduce how to use PHPMailer to send emails and save the email information to the user information table in the MySQL database. 1. Install the PHPMailer library PHPMailer is

Go language and MySQL database: How to separate hot and cold data? Go language and MySQL database: How to separate hot and cold data? Jun 18, 2023 am 08:26 AM

As the amount of data continues to increase, database performance has become an increasingly important issue. Hot and cold data separation processing is an effective solution that can separate hot data and cold data, thereby improving system performance and efficiency. This article will introduce how to use Go language and MySQL database to separate hot and cold data. 1. What is hot and cold data separation processing? Hot and cold data separation processing is a way of classifying hot data and cold data. Hot data refers to data with high access frequency and high performance requirements. Cold data

How to use MySQL database for time series analysis? How to use MySQL database for time series analysis? Jul 12, 2023 am 08:39 AM

How to use MySQL database for time series analysis? Time series data refers to a collection of data arranged in time order, which has temporal continuity and correlation. Time series analysis is an important data analysis method that can be used to predict future trends, discover cyclical changes, detect outliers, etc. In this article, we will introduce how to use a MySQL database for time series analysis, along with code examples. Create a data table First, we need to create a data table to store time series data. Suppose we want to analyze the number

How to perform incremental data backup of MySQL database using Go language How to perform incremental data backup of MySQL database using Go language Jun 17, 2023 pm 02:28 PM

As the amount of data increases, database backup becomes more and more important. For the MySQL database, we can use the Go language to achieve automated incremental backup. This article will briefly introduce how to use Go language to perform incremental backup of MySQL database data. 1. Install the Go language environment. First, we need to install the Go language environment locally. You can go to the official website to download the corresponding installation package and install it. 2. Install the corresponding library. The Go language provides many third-party libraries for accessing MySQL databases, among which the most commonly used ones are

To what extent can I develop MySQL database skills to be successfully employed? To what extent can I develop MySQL database skills to be successfully employed? Sep 12, 2023 pm 06:42 PM

To what extent can I develop MySQL database skills to be successfully employed? With the rapid development of the information age, database management systems have become an indispensable and important component in all walks of life. As a commonly used relational database management system, MySQL has a wide range of application fields and employment opportunities. So, to what extent do MySQL database skills need to be developed to be successfully employed? First of all, mastering the basic principles and basic knowledge of MySQL is the most basic requirement. MySQL is an open source relational database management

How to use MySQL database for image processing? How to use MySQL database for image processing? Jul 14, 2023 pm 12:21 PM

How to use MySQL database for image processing? MySQL is a powerful relational database management system. In addition to storing and managing data, it can also be used for image processing. This article will introduce how to use a MySQL database for image processing and provide some code examples. Before you begin, make sure you have installed a MySQL database and are familiar with basic SQL statements. Create a database table First, create a new database table to store the image data. The structure of the table can be as follows

How to make reliable MySQL database connection using Go language? How to make reliable MySQL database connection using Go language? Jun 17, 2023 pm 07:18 PM

With the large amount of data that needs to be stored and processed, MySQL has become one of the most commonly used relational databases in application development. The Go language is becoming more and more popular among developers due to its efficient concurrency processing and concise syntax. This article will lead readers to implement reliable MySQL database connection through Go language, allowing developers to query and store data more efficiently. 1. Several ways for Go language to connect to MySQL database. There are usually three ways to connect to MySQL database in Go language, which are: 1. Third-party library

How to migrate data from MySQL database using Go language How to migrate data from MySQL database using Go language Jun 17, 2023 am 09:01 AM

With business growth and database version upgrades and other factors, database migration is becoming more and more common. When doing data migration, it is important to choose the right tools and languages. This article will introduce how to use Go language to migrate MySQL database data. Install the MySQL driver. Before using the Go language to migrate the MySQL database, you need to install the MySQL driver first. In the Go language, there are many MySQL drivers to choose from. In this article, we will select the most commonly used official MySQL driver package-"dat

See all articles