以下、テンポラリテーブル
の制限を示します。
テンポラリテーブルの型は、HEAP
、ISAM
、MyISAM
、
MERGE
、InnoDB
のみ。
テンポラリテーブルは同じクエリで 2 回以上使用できない。 たとえば、以下は動作しない。
mysql> SELECT * FROM temporary_table, temporary_table AS t2;
TEMPORARY
テーブルで
RENAME
は使用できない。
ALTER TABLE org_name RENAME new_name
は使用できる。
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.