mysql 把select结果保存为临时表,mysql中把查询结果输出到临时表

mysql 把select结果保存为临时表,有2种方法 第一种,创建正式的表,此表可供你反复查询 drop table if exists a_temp; create table a_temp as select 表字段名称 from 表名称mysql 或者,创建临时表,此表可供你当次连接的操做里查询. create temporary table 临时表名称 select 表字段名称 from
相关文章
相关标签/搜索