1.查询数据库中所有的表
select * from tab;
2.通过复制已有的表新增一个表
create table t_employees as select * from employees
3.如果表已经存在
insert into tab1 select * from tab2;