MySQL 当记录不存在时插入insert if not exists

昝辉Zac Zac的SEO博客,坚持12年,优化成为生活。

在 MySQL 中,插入,insert,一条记录很简单,但是一些特殊应用,在插入记录前,需要检查这条记录是否已经存在,只有当记录不存在时才执行插入操作,本文介绍的就是这个问题的解决方案.

问题:我创建了一个表来存放客户信息,我知道可以用 insert 语句插入信息到表中,但是怎么样才能保证不会插入重复的记录呢?

答案:可以通过使用 EXISTS 条件句防止插入重复记录。

示例一:插入多条记录,假设有一个主键为 client_id 的 clients 表,可以使用下面的语句,代码如下:

  1. INSERTINTOclients
  2. (client_id,client_name,client_type)
  3. SELECTsupplier_id,supplier_name,'advertising'
  4. FROMsuppliers
  5. WHEREnotexists(select*fromclients
  6. whereclients.client_id=suppliers.supplier_id);

示例二:插入单条记录,代码如下:

  1. INSERTINTOclients
  2. (client_id,client_name,client_type)
  3. SELECT10345,'IBM','advertising'
  4. FROMdual--phpfensi.com
  5. WHEREnotexists(select*fromclients
  6. whereclients.client_id=10345);

使用 dual 做表名可以让你在 select 语句后面直接跟上要插入字段的值,即使这些值还不存在当前表中.

相关广告
  • MySQL 当记录不存在时插入insert if not exists MySQL 当记录不存在时插入insert if not exists MySQL 当记录不存在时插入insert if not exists
相关阅读

MySQL 当记录不存在时插入insert if not exists

2019/10/10 17:33:06 | 谷歌SEO算法 | 微服务