1.表的删除
drop table 表名
drop table if exist author ;
2.表的复制
#1.复制表的结构
creat table 新表 like 要复制的表
creat table copy like author;
#2.复制表的结构和数据
creat table 新表
select * from 旧表;
create table copy2
select * from author ;
#只复制部分
create table copy3
select id,name
from author
where name = '中国' ;
标签:删除,creat,author,drop,复制,table,select From: https://www.cnblogs.com/liujy2233/p/16987310.html