MySQL创建临时表
1 drop TEMPORARY table if EXISTS temp_table; 2 create TEMPORARY table temp_table( 3 id int not null, 4 username VARCHAR(20), 5 PRIMARY key(id) 6 );
1 drop TEMPORARY table if EXISTS temp_table; 2 create TEMPORARY table temp_table( 3 id int not null, 4 username VARCHAR(20), 5 PRIMARY key(id) 6 );