
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
What are MySQL database engines?
A storage engine is a software module that a database management system uses to create, read, update data from a database. The default storage engine for MySQL current version in InnoDB.
To know about MySQL database engine, use show command. The query is as follows −
mysql> show engines;
The following is the output −
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO | | MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | | CSV | YES | CSV storage engine | NO | NO | NO | | FEDERATED | NO | Federated MySQL storage engine | NULL | NULL | NULL | | PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO | | MyISAM | YES | MyISAM storage engine | NO | NO | NO | | InnoDB | DEFAULT | Supports transactions, row-level locking, and foreign keys | YES | YES | YES | | BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | | ARCHIVE | YES | Archive storage engine | NO | NO | NO | +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ 9 rows in set (0.04 sec)
- Related Articles
- What are storage engines and how we can check the list of storage engines supported by MySQL installation?
- What are some Python game engines?
- What is a database and what are the advantages of using MySQL database?
- What are some good tools to visualize MySQL database schema?
- What kinds of programs are available in MySQL database to manage MySQL server?
- What is Web Search Engines?
- Are MySQL database and table names case-sensitive?
- MYSQL - select database?
- What are the Database recovery techniques?
- What are the database security policy?
- Check how many rows are in a MySQL database table?
- What is the difference between scramjet and ramjet engines?
- What are the issues in database privacy?
- What are the drawbacks of database security?
- What are Microsatellites (SSSR’s) and What Is Microsatellite Database

Advertisements