B.4.6.2 临时 table 问题

创建临时 table创建的临时 table 具有以下限制:

ALTER TABLE old_name RENAME new_name;
SELECT * FROM temp_table JOIN temp_table AS t2;

该语句产生此错误:

ERROR 1137: Can't reopen table: 'temp_table'
首页