当你创建临时表的时候,你可以使用temporary关键字。如:
复制代码 代码如下:
create temporary table tmp_table(name varchar(10) not null,passwd char(6) not null);
复制代码 代码如下:
create temporary table if not exists sp_output_tmp engine= memory select …from … where ID=current_id;
复制代码 代码如下:
mysql> SELECT * FROM temp_table, temp_table AS t2;
ERROR 1137: Can't reopen table: 'temp_table'
复制代码 代码如下:
mysql>ALTER TABLE orig_name RENAME new_name;
复制代码 代码如下:
DROP TEMPORARY TABLE IF EXISTS sp_output_tmp;
新闻热点
疑难解答