mysql语句插入前判断数据是否重复

在mysql中插入数据有时需要判断数据插入是否重复

语句编写:insert into 表(相应字段) select 相应字段 from dual where not exists (select 相应字段 from 表 where 相应查询条件)

eg:

原文地址:https://www.cnblogs.com/nongfusanquan/p/10477909.html