sql复制表中的数据到另外一张表

-- 复制student表到student_new表中包括结构和数据
CREATE TABLE student_new AS SELECT * from student
-- 复制student表到student_new1只复制表结构
CREATE TABLE student_new1 as SELECT * FROM student WHERE 1=2;
-- select into from :将查询出来的数据整理到一张新表中保存,表结构与查询结构一致 
-- select *(查询出来的结果) into newtable(新的表名) from where(后续条件)

-- insert into select:为已经存在的表批量添加新数据
-- insert into (准备好的表) select *(或者取用自己想要的结构) from 表名 where 各种条件

 

sql复制表中的数据到另外一张表

上一篇:Photoshop 制作梦幻的蓝色水晶字


下一篇:pd.pivot_table