欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

分享MYSQL插入数据时忽略重复数据的方法

程序员文章站 2024-02-26 21:49:10
使用下以两种方法时必须把字段设为”主键(primary key”或”唯一约束(unique)”。1:使用replace into (此种方法是利用替换的方法,有点似类于先删...

使用下以两种方法时必须把字段设为”主键(primary key”或”唯一约束(unique)”。
1:使用replace into (此种方法是利用替换的方法,有点似类于先删除再插入) 

复制代码 代码如下:

replace into syntax 
replace [low_priority | delayed] 
    [into] tbl_name [(col_name,...)] 
    {values | value} ({expr | default},…),(…),… 
or: 
replace [low_priority | delayed] 
    [into] tbl_name 
    set col_name={expr | default}, … 
or: 
replace [low_priority | delayed] 
    [into] tbl_name [(col_name,...)] 
    select …


2:使用insert [ignore] into (此种方法效率比较高,判断是否存在,存在不插入,否则插入) 
复制代码 代码如下:

insert [ignore] into syntax 
insert [low_priority | delayed | high_priority] [ignore] 
[into] tbl_name [(col_name,...)] 
{values | value} ({expr [...]