mysql条件插入-如果不存在插入 [英] mysql conditional insert - if not exists insert

查看:133
本文介绍了mysql条件插入-如果不存在插入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否存在一个仅检查记录的查询,如果不存在,则插入?我不想重复更新或替换.寻找一个查询解决方案,寻找其他答案,但不是我真正想要的.

Is there a query that will just check for the record and if it doesn't exists insert? I don't want to on duplicate update or replace. Looking for a one query solution, looked at other answer but not really what I was hoping for.

表格:

name|value|id
------------------
phill|person|12345

伪查询:

IF NOT EXISTS(name='phill', value='person', id=12345) INSERT INTO table_name

推荐答案

使用REPLACE-与INSERT完全相同,不同之处在于,如果表中的旧行与PRIMARY KEY的新行具有相同的值,或者唯一索引,在插入新行之前删除旧行.

Use REPLACE - works exactly like INSERT, except that if an old row in the table has the same value as a new row for a PRIMARY KEY or a UNIQUE index, the old row is deleted before the new row is inserted.

http://dev.mysql.com/doc/refman/5.0/en/replace.html

-- For your example query
REPLACE INTO table_name(name, value, id) VALUES
('phill', 'person', 12345) 

由于您不能使用REPLACE,因此另一个选择是:为表数据(主键,唯一性)设置约束索引并使用INSERT IGNORE

Since you can't use REPLACE another option is to: set constraint indexes for the table data (primary key, uniqueness) and use INSERT IGNORE

INSERT IGNORE INTO table_name
SET name = 'phill',
    value = 'person',
    id = 12345;

这篇关于mysql条件插入-如果不存在插入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆