mysql conditional insert - if not exists insert(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 或 UNIQUE 索引,在插入新行之前删除旧行.
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 条件插入 - 如果不存在插入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysql 条件插入 - 如果不存在插入


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01