SHOW TABLE TYPES
Este comando é implementado no MySQL 4.1.0.
SHOW TABLE TYPES
lhe mostra a informação
de status sobre o tipo de tabela. Isto é particulamente útil
para verificar se um tipo de tabela é suportado; ou para ver
qual é o tipo de tabela padrão.
mysql> SHOW TABLE TYPES;
+--------+---------+-----------------------------------------------------------+
| Type | Support | Comment |
+--------+---------+-----------------------------------------------------------+
| MyISAM | DEFAULT | Default type from 3.23 with great performance |
| HEAP | YES | Hash based, stored in memory, useful for temporary tables |
| MERGE | YES | Collection of identical MyISAM tables |
| ISAM | YES | Obsolete table type; Is replaced by MyISAM |
| InnoDB | YES | Supports transactions, row-level locking and foreign keys |
| BDB | NO | Supports transactions and page-level locking |
+--------+---------+-----------------------------------------------------------+
6 rows in set (0.00 sec)
A opção 'Support' DEFAULT
indica se um
tipo de tabela particular é é suportado, e qual é o tipo
padrão. Se o servidor é iniciado com
--default-table-type=InnoDB
, então o campo
'Support' do InnoDB terá o valor DEFAULT
.
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.