mysql语句插入前判断数据是否重复
时间:2019-03-05 17:33:36
收藏:0
阅读:743
在mysql中插入数据有时需要判断数据插入是否重复
语句编写:insert into 表(相应字段) select 相应字段 from dual where not exists (select 相应字段 from 表 where 相应查询条件)
eg:
原文:https://www.cnblogs.com/nongfusanquan/p/10477909.html
评论(0)