从一张表查询结果insert到另外一张表如果要插入目标表不存在:select * into 目标表 from 表 where 条件如果要插入目标表已经存在: insert into 目的表 select * from 表 where 条件版权声明:本文为mix0313原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.csdn.net/mix0313/article/details/50973849