decorative image for blog on mysql
October 14, 2021

MySQL Overview: Key Features, Benefits, and Use Cases

Databases

MySQL is a popular choice among open source RDBMS, but why? In this blog, we give an overview of MySQL, including what it is, how it works, potential use cases, benefits, and how it compares to other popular open source RDBMS.

Back to top

What Is MySQL?

MySQL is an open source relational database management system that was originally released in 1995.

MySQL is popular among all databases, and is ranked as the 2nd most popular database, only slightly trailing Oracle Database. Among open source databases, MySQL is the most popular database in use today. Known as one of the most reliable and performative databases out there, it was named after it’s founders daughter My, and is known for organizing data into one or more data tables in which data types are related to each other. These relations help structure data, as SQL is a language programmers use for creation, modification and extraction of data from a relational database. 

MySQL uses standalone clients that allow users to interact with MySQL, and also to use it with other programs for applications that need relational database capabilities. MySQL's reputation for reliability has led to its inclusion in the popular LAMP stack (Linux, Apache, MySQL, Python/Perl/PHP) and is also used as the default DBMS in popular CMS options like Drupal, Joomla, phpBB, and WordPress. 

Read Our Full Guide to Open Source Databases

In our Decision Maker's Guide to Open Source Databases, we give an overview of the top open source databases in use today, including the top RDBMS, NoSQL, Document database, and Graph database options.

Download Free Copy

Is MySQL Open Source?

MySQL is licensed under the GNU General Public License and is also available under several proprietary licenses. When Oracle bought MySQL AB in 2010, Michael "Monty" Widenius, MySQL founder, forked MySQL into a free, open source database called MariaDB -- with the intention of keeping the MariaDB project free and open source forever.

Is MySQL Free to Use?

MySQL has several versions available, but there are essentially two options: a community version, which is free to use; and paid versions, which include additional functionality, extensions, and support through Oracle. Despite the branding for the paid version, the community version is still considered to be production-ready and is often used in the enterprise.

Is MySQL a Relational Database or a NoSQL Database?

MySQL is a relational database that uses structured query language. Relational databases are a type of database that uses a structure that allows us to identify and access the data in relation to another piece of data inside of the database. This format is often organized as tables.

Is MySQL Scalable?

MySQL is a highly scalable product and that scalability can come from several different performance tuning techniques. For starters, you can tune MySQL from the application level. Using a product like Redis which is also supported by OpenLogic, you can cache database queries in an in-memory database. This technique works well with databases containing a high read level and a low write level. An example would be queries for static content on your site.

Another technique is pre-fetching records. This is done to prevent n+1 queries which is a type of query that fetches n amount of records and then runs additional queries for each of the records. Caching columns and query results as variables are two other techniques available. 

There are some other optimizations you can make at the MySQL level, such as only returning selected columns in search results, using ENUM for categorical data types, removing unused indexes, breaking up complex queries into smaller, simpler queries and using the slow query log are among other optimizations you can make when scaling. Setting up replica databases used for read operations is a way to horizontally scale your environment and MySQL comes with built-in support for replication. 

MySQL Use Cases

Potential use cases for MySQL include, but are not limited to:

  • Elastic Replication - Where an environment requires the number OS servers to grow and shrink dynamically.
  • High Availability - Where sharding is used for write scale-out (in which each shard maps to a replication group).
  • Source-Replica Replication Alternative - Which allows using a single source server to make it a single point of contention.
  • Autonomic Systems - Which allows users to deploy MySQL Group Replication for the automation that is built into replication protocol.
Back to top

Five Key Features and Benefits of MySQL

We've outlined many of the benefits for MySQL already. It's versatile, mature, open source, and extensible. But if we had to list five key MySQL features and benefits, they would be the following.

1. Easy to Use

MySQL is considered easy to use among RDBMS. It works with basic SQL and, given its maturity and adoption, there is abundant documentation available.

2. Secure

MySQL's maturity also lends itself to security. It's regularly updated, has a vibrant developer community, and, because of it's wide adoption within the enterprise, many CVE patches are released before the CVE is announced. These factors combine to make MySQL a stable and secure choice among RDBMS.

3. Open Source

The community edition of MySQL is enterprise ready, and supported by a GNU General Public License. For users who want access to equitable proprietary functionality of MySQL without the added price tag, there are other options within the ecosystem — like MariaDB — that can add similar levels of functionality and beyond.

4. Scalable

MySQL is highly scalable for an RDBMS, with a wide range of options not covered in this blog that allow for tuning, customizing and enhancing your MySQL experience. 

5. Reliable

MySQL is reliable — not just from a data perspective, but from a development perspective. It's mature, it has regular releases, patches, and an entrenched developer community that works with it. This makes it a safe choice compared to newer, less mature RDBMS options.

Back to top

Final Thoughts

MySQL is popular for a reason. It's an accessible database management system, and one that has been improved and iterated to improve its ability to manage modern problems. That said, MySQL does lock functionality behind paid versions of the DBMS. For those who need something beyond the core functionality, MariaDB may be a better option.

Get Guidance and Support for Your Open Source Databases

From MySQL to Neo4j, OpenLogic offers technical support and services for the top open source databases in use today. Talk to an expert to see how we can help support your goals.

TALK TO AN EXPERT

Additional Resources

Back to top