MySQL表结构复制、表数据迁移以及临时表、视图创建
1、只拷贝表结构,不拷贝数据
www.2cto.com
select * into b from a where 1<>1;
2、表数据迁移 表b已经存在:
insert into b (d, e, f) select a, b, c from a;
表b原先不存在:
create table b (select a, b, c from a);
3、创建临时表
create temporary table a (...);
4、创建视图 www.2cto.com
视图属于
数据库:
create view test.myView as select a, b from a;