February 2018
Intermediate to advanced
510 pages
16h 10m
English
Let's now look at an overview of different MySQL storage engines. This is an important section that gives a brief of different database storage engines; we will be discussing this in detail in Chapter 6, MySQL 8 Storage Engines. MySQL stores data in the database as a subdirectory. In each database, data is stored as tables. When you create a table, MySQL stores the table definition in .frm with the same name as the table name. You can use the SHOW TABLE STATUS command to show information about your table:
mysql> SHOW TABLE STATUS LIKE 'admin_user' \G;*************************** 1. row *************************** Name: admin_user Engine: InnoDB Version: 10 Row_format: Dynamic Rows: 2 Avg_row_length: 8192 ...
Read now
Unlock full access