MySQL - Explain how to create a new table using InnoDB Storage Engine

Explain how to create a new table using InnoDB Storage Engine.

- InnoDB storage engine is transaction safe and developed by Oracle.

- InnoDB is not the default storage engine. "ENGINE = InnoDB" at the end of the "CREATE TABLE" statement can be specified to create new tables with InnoDB as the storage engine.

- You do not need to specify the ENGINE=InnoDB clause if InnoDB is defined as the default storage engine, which is the default as of MySQL 5.5.

- You might still use ENGINE=InnoDB clause if you plan to use mysqldump or replication to replay the CREATE TABLE statement on a server where the default storage engine is not InnoDB.
MySQL - Explain how to create a new table using BDB Storage Engine
Explain how to create a new table using BDB Storage Engine - BDB (BerkeleyDB) storage engine is transaction safe and developed by Oracle......
MySQL - Explain how to create a new table using CSV Storage Engine
Explain how to create a new table using CSV Storage Engine - CSV (Comma-Separated Values) storage engine stores table data in text files in comma-separated value format......
MySQL - What are the system tables that store user privileges?
What are the system tables that store user privileges? - mysql.user - Stores privileges granted at the global level, mysql.db - Stores privileges granted at the database level.....
Post your comment