1、待插入目标表不存在:
select * from 目标表 from 表 where 条件
2、待插入目标表已经存在:
insert into 目标表 select * from 表 where 条件
3、如果是跨数据库操作的话,将A数据库的atable表所查询的数据全部插入到B数据库的btable表中
select * into B.btable from A.table where 条件
4、跨服务器
类似3
本文共 258 字,大约阅读时间需要 1 分钟。
1、待插入目标表不存在:
select * from 目标表 from 表 where 条件
2、待插入目标表已经存在:
insert into 目标表 select * from 表 where 条件
3、如果是跨数据库操作的话,将A数据库的atable表所查询的数据全部插入到B数据库的btable表中
select * into B.btable from A.table where 条件
4、跨服务器
类似3
转载于:https://my.oschina.net/799835984/blog/665973