--1.快速将一张表中的数据导入新建的表中
create table tmp_table1
as
select * from table1;

--2.也可选择表中的个字段的数据导入新建的表中,可以带where 条件
create table tmp_table1
as
select eno,ename from table1 where deno=1

 

posted on 2017-02-09 12:12  清风暮雨  阅读(1797)  评论(0)    收藏  举报