mysql创建临时表

1.语法

create temporary table sp_output_tmp(name varchar(10) not null,passwd char(6) not null)

2.删除临时表

DROP TEMPORARY TABLE IF EXISTS sp_output_tmp;

3.注意

在同一个query语句中,你只能查找一次临时表。例如:下面的就不可用

mysql> SELECT * FROM temp_table, temp_table AS t2;

ERROR 1137: Can‘t reopen table: ‘temp_table‘

mysql创建临时表

上一篇:解决Oracle启动失败


下一篇:数据库编程军规条例