有时我们想把查询到的数据放到一个表里(临时表、新建的表、已存在的表),那我们该如何写呢?
可参考下面的SQL
1、插入到临时表里面:
-- 把 test_table 的 100 条数据放到临时表 tmp_table 里
create temporary table tmp_table
select * from test_table limit 100;
2、插入到一个已经存在的数据表
-- 把 test_01 的数据都放到 test_02 表里)
insert into test_02
select * from test_01 ;
3、插入到一个不存在的表 (执行以下SQL 语句前,该表是不存在你的数据库里的)
-- 把 表 test_table 的数据放到一个现创的 new_table 里
create table new_table as
select * from test_table;
希望对你有帮助!!