bjghzly 发表于 2018-10-1 14:08:34

MySQL查看和修改表的存储引擎

+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+  
| Engine             | Support | Comment                                                      | Transactions | XA   | Savepoints |
  
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
  
| MRG_MYISAM         | YES   | Collection of identical MyISAM tables                        | NO         | NO   | NO         |
  
| CSV                | YES   | CSV storage engine                                             | NO         | NO   | NO         |
  
| MyISAM             | YES   | MyISAM storage engine                                          | NO         | NO   | NO         |
  
| BLACKHOLE          | YES   | /dev/null storage engine (anything you write to it disappears) | NO         | NO   | NO         |
  
| MEMORY             | YES   | Hash based, stored in memory, useful for temporary tables      | NO         | NO   | NO         |
  
| PERFORMANCE_SCHEMA | YES   | Performance Schema                                             | NO         | NO   | NO         |
  
| ARCHIVE            | YES   | Archive storage engine                                       | NO         | NO   | NO         |
  
| FEDERATED          | NO      | Federated MySQL storage engine                                 | NULL         | NULL | NULL       |
  
| InnoDB             | DEFAULT | Supports transactions, row-level locking, and foreign keys   | YES          | YES| YES      |
  
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+


页: [1]
查看完整版本: MySQL查看和修改表的存储引擎