码迷,mamicode.com
首页 > 数据库 > 详细

mysql把查询到不一样的记录插入到另一张表中

时间:2017-03-06 16:30:55      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:not   记录   style   mysq   div   字段   where   into   sel   

我们将一个表中的数据插入到另一个表中的时候可以这么写:
 
INSERT INTO 目标表  
 (字段1, 字段2, ...)  
 SELECT 字段1, 字段2, ...  
 FROM 来源表  
 WHERE not exists (select * from 目标表  
 where 目标表.比较字段 = 来源表.比较字段);

mysql把查询到不一样的记录插入到另一张表中

标签:not   记录   style   mysq   div   字段   where   into   sel   

原文地址:http://www.cnblogs.com/wodetian/p/6510504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!