This section provides brief information on InnoDB tables and indexes and their related operations:
- Creating InnoDB tables: Creates tables using the CREATE TABLE statement.
- The physical row structure of an InnoDB table: Depends on the specified row format during the table creation. If not specified, uses the default, DYNAMIC.
- Moving or copying InnoDB tables: Different techniques for moving or copying some or all InnoDB tables to a different instance or server.
- Converting tables from MyISAM to InnoDB: Considers guidelines and tips while converting MyISAM tables to InnoDB tables, except a partitioned table, which is not supported with MySQL 8.
- AUTO_INCREMENT handling in InnoDB: Configures the mode for AUTO_INCREMENT with ...