-- 复制表 create table newtable as select * from t_stu; select * from newtable; -- 复制表结构,但不复制数据 create table newt as select * from t_stu where 1=2; select * from newt;