MyISAM
は、3
種類のテーブル型をサポートします。そのうち
2
つは、使用しているカラムの型に応じて自動的に選択されます。3
番目の圧縮テーブルは、myisampack
ツールによってのみ作成されます。
BLOB
値を持たないテーブルを
CREATE
または ALTER
する際に、ROW_FORMAT=#
テーブルオプションを使用してテーブル形式を強制的に
DYNAMIC
または FIXED
に設定できます。将来的には、ALTER
TABLE
に ROW_FORMAT=compressed |
default
を指定することで、テーブルを圧縮/展開できるようになります。
See 項6.5.3. 「CREATE TABLE
構文」。
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.